1
0
mirror of https://github.com/golang/go synced 2024-11-21 17:54:39 -07:00

convert to C

R=dmr
DELTA=6  (0 added, 3 deleted, 3 changed)
This commit is contained in:
Brian Kernighan 1974-01-20 01:02:03 -04:00
parent 7d7c6a97f8
commit 0bb0b61d6a
2 changed files with 3 additions and 7 deletions

View File

@ -1,7 +0,0 @@
main( ) {
extrn a, b, c;
putchar(a); putchar(b); putchar(c); putchar('!*n');
}
a 'hell';
b 'o, w';
c 'orld';

3
src/pkg/debug/macho/testdata/hello.c vendored Normal file
View File

@ -0,0 +1,3 @@
main() {
printf("hello, world");
}