Added support for unix scripts
All checks were successful
/ test (push) Successful in 29s

This commit is contained in:
Eduard Urbach 2025-07-07 16:54:38 +02:00
parent f6eb30e460
commit 031edd2ffe
Signed by: akyoto
GPG key ID: 49226B848C78F6C8
9 changed files with 102 additions and 3 deletions

7
examples/script/script.q Executable file
View file

@ -0,0 +1,7 @@
#!/usr/bin/env q
import io
main() {
io.write("Hello\n")
}