From f6e024a34df0b93c37c32971f9dec3588944d9ea Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Fri, 26 Sep 2025 01:14:01 -0700 Subject: [PATCH] Feat: Add passing test for basic I/O --- test/src/simple_io.hi | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 test/src/simple_io.hi diff --git a/test/src/simple_io.hi b/test/src/simple_io.hi new file mode 100644 index 0000000..188aceb --- /dev/null +++ b/test/src/simple_io.hi @@ -0,0 +1,8 @@ +// This test should pass with the current transpiler. + +message: "Hello from Hi!" +_(message) + +count: 1 +count = 2 +_("Count is", count)