mirror of
https://github.com/anoma/juvix.git
synced 2025-01-07 16:22:14 +03:00
8ef970d3fd
This PR implements `printString` and `printBool` builtins for the legacy C backend. Previously IO for strings was done using compile blocks with included C code. Fixes https://github.com/anoma/juvix/issues/1696
9 lines
98 B
Plaintext
9 lines
98 B
Plaintext
module LitStringIO;
|
|
|
|
open import Stdlib.Prelude;
|
|
|
|
main : IO;
|
|
main := printStringLn "hello";
|
|
|
|
end;
|