add golden test stuff

This commit is contained in:
rhiannon morris 2024-04-14 20:47:59 +02:00
parent b7dc5ffdc4
commit 8823154973
24 changed files with 126 additions and 0 deletions

View file

@ -0,0 +1,7 @@
def0 IO : ★ → ★ = λ A ⇒ IOState → A × IOState
#[compile-scheme "(lambda (str) (builtin-io (display str) (newline)))"]
postulate print : String → IO {ok}
#[main]
def main = print "hello 🐉"