summaryrefslogtreecommitdiff
path: root/Biz/Bild
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2022-07-25 10:25:51 -0400
committerBen Sima <ben@bsima.me>2022-07-25 10:29:10 -0400
commit95df71e6ce9ec3887f7e88accda7c9b29c538d86 (patch)
treef9b98a5f3462f0970359d8e5e342b7865eb04d6a /Biz/Bild
parent8e25ac2c4f606f3a82e079e0c4efa662b6c4e442 (diff)
Add basic support for building C code
Diffstat (limited to 'Biz/Bild')
-rw-r--r--Biz/Bild/Example.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/Biz/Bild/Example.c b/Biz/Bild/Example.c
new file mode 100644
index 0000000..06e6ed8
--- /dev/null
+++ b/Biz/Bild/Example.c
@@ -0,0 +1,6 @@
+// : out helloworld.exe
+void
+main()
+{
+ printf("Biz/Bild/Example.c: Hello world!\n");
+}