Added hello example
All checks were successful
/ test (push) Successful in 13s

This commit is contained in:
Eduard Urbach 2025-06-18 23:05:20 +02:00
parent bc5530a70a
commit bd74b95155
Signed by: akyoto
GPG key ID: 49226B848C78F6C8

5
examples/hello/hello.q Normal file
View file

@ -0,0 +1,5 @@
import io
main() {
io.write("Hello\n")
}