quox/golden-tests/tests/load/lib.quox

9 lines
217 B
Plaintext
Raw Normal View History

2024-04-14 14:47:59 -04:00
namespace lib {
def0 IO : ★ → ★ = λ A ⇒ IOState → A × IOState
#[compile-scheme "(lambda (str) (builtin-io (display str) (newline)))"]
postulate print : String → IO {ok}
def main = print "hello 🐉"
}