11 lines
207 B
Plaintext
11 lines
207 B
Plaintext
; status: design/speculative
|
|
; Requires string runtime and `print` support, which are not current Glagol
|
|
; executable-fixture capabilities.
|
|
|
|
(module hello)
|
|
|
|
(fn main () -> i32
|
|
(print "Hello, Slovo")
|
|
0)
|
|
|