summaryrefslogtreecommitdiff
path: root/sample.b
diff options
context:
space:
mode:
Diffstat (limited to 'sample.b')
-rw-r--r--sample.b7
1 files changed, 7 insertions, 0 deletions
diff --git a/sample.b b/sample.b
new file mode 100644
index 0000000..960dfbd
--- /dev/null
+++ b/sample.b
@@ -0,0 +1,7 @@
+func foo() {
+ puts("hello");
+}
+
+func main() {
+ foo();
+}