shithub: scc

ref: bdb96f1671f8b8f20bffc45cfacc7fa2ee2cb49f
dir: /cc1/tests/test001.c/

View raw version
/* See LICENSE file for copyright and license details. */

/*
name: TEST001
description: Basic hello world test
error:
output:
X4	I	F	"printf
G6	I	F	"main
{
\
V8	K	#ND
Y9	V8	"	(
	#"hello world
	#K0A
	#K00
)
	X4	Y9	'P	pP	cI
	h	#I0
}
*/

#include <stdio.h>

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