aboutsummaryrefslogtreecommitdiff
path: root/tests/hello_world/hello_world.qbt
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-08-18 20:48:27 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-08-18 21:07:11 +0300
commit4af5176d6377958a457da3e5f671ce21540fad70 (patch)
tree04e7f2fe66e7c2e05f6a47b0c8108cf407ee6c93 /tests/hello_world/hello_world.qbt
parentcdbe058f69f1db9c552e1b4a1ec5f94c12fc48a2 (diff)
downloadqbt-4af5176d6377958a457da3e5f671ce21540fad70.tar.gz
qbt-4af5176d6377958a457da3e5f671ce21540fad70.zip
add tests and fixes on top of 674438
Diffstat (limited to 'tests/hello_world/hello_world.qbt')
-rw-r--r--tests/hello_world/hello_world.qbt18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/hello_world/hello_world.qbt b/tests/hello_world/hello_world.qbt
new file mode 100644
index 0000000..8419208
--- /dev/null
+++ b/tests/hello_world/hello_world.qbt
@@ -0,0 +1,18 @@
+main()
+{
+ &_putchar ('H') => ();
+ &_putchar ('e') => ();
+ &_putchar ('l') => ();
+ &_putchar ('l') => ();
+ &_putchar ('o') => ();
+ &_putchar (',') => ();
+ &_putchar (' ') => ();
+ &_putchar ('W') => ();
+ &_putchar ('o') => ();
+ &_putchar ('r') => ();
+ &_putchar ('l') => ();
+ &_putchar ('d') => ();
+ &_putchar ('!') => ();
+ &_putchar ('\n') => ();
+ => ();
+}