aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/debug
diff options
context:
space:
mode:
authorBrian Kernighan <bwk>1972-07-18 19:05:45 -0500
committerBrian Kernighan <bwk>1972-07-18 19:05:45 -0500
commit7d7c6a97f815e9279d08cfaea7d5efb5e90695a8 (patch)
treee06bd601885e16ad3d72c2a8c9b411889b2e478e /src/pkg/debug
downloadgo-7d7c6a97f815e9279d08cfaea7d5efb5e90695a8.tar.xz
hello, world
R=ken DELTA=7 (7 added, 0 deleted, 0 changed)
Diffstat (limited to 'src/pkg/debug')
-rw-r--r--src/pkg/debug/macho/testdata/hello.b7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/pkg/debug/macho/testdata/hello.b b/src/pkg/debug/macho/testdata/hello.b
new file mode 100644
index 0000000000..05c4140424
--- /dev/null
+++ b/src/pkg/debug/macho/testdata/hello.b
@@ -0,0 +1,7 @@
+main( ) {
+ extrn a, b, c;
+ putchar(a); putchar(b); putchar(c); putchar('!*n');
+}
+a 'hell';
+b 'o, w';
+c 'orld';