9 lines
217 B
Text
9 lines
217 B
Text
|
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 🐉"
|
|||
|
}
|