shithub: scc

ref: 8d6c4f8946dfb91a79e70efc04db7d089d4abbf0
dir: /cc1/tests/test001.c/

View raw version
/*
name: TEST001
description: Basic hello world test
error:
output:
F3	I	P	E
X4	F3	printf
F5	I
G6	F5	main
{
\
V8	K	#13
Y7	V8
(
	#"hello world
	#K0A
	#K00
)
	X4	Y7	'P	pP	cI
	r	#I0
}
*/

#include <stdio.h>

int
main(void)
{
	printf("hello world\n");
	return 0;
}