4 lines
90 B
Text
4 lines
90 B
Text
#lang lean4
|
|
def main (xs : List String) : IO UInt32 :=
|
|
IO.println "hello world" *>
|
|
pure 0
|