a usage in hello.quox. why not

This commit is contained in:
rhiannon morris 2023-12-04 23:36:30 +01:00
parent 8b8129027d
commit 08a8c694b1
1 changed files with 3 additions and 1 deletions

View File

@ -21,4 +21,6 @@ postulate print : String → IO Unit
load "nat.quox"
#[main]
def main = seq (print- (nat.plus 60 9)) (print "(nice)")
def main : IO Unit =
let1 sixty-nine = nat.plus 60 9 in
seq (print- sixty-nine) (print "(nice)")