15 lines
197 B
Text
15 lines
197 B
Text
module hello
|
|
|
|
function dyno = -> DynamicObject()
|
|
|
|
struct human = { name }
|
|
|
|
@annotated
|
|
function main = |args| {
|
|
let a = 1
|
|
var b = 2
|
|
|
|
println("hello")
|
|
|
|
let john = human("John Doe")
|
|
}
|