lang_2023/tests/partitions.lang

15 lines
213 B
Text
Raw Normal View History

2023-06-03 19:01:03 +03:00
test all.dev.syntax.testing {
2023-07-03 19:05:50 +03:00
let a = 31
2023-06-03 19:01:03 +03:00
; do-something: a
2023-03-31 12:10:12 +03:00
}
2023-06-03 19:01:03 +03:00
exec app.exe {
2023-07-03 19:05:50 +03:00
let b = true
let c = false
2023-06-03 19:01:03 +03:00
; do-something-different: b b c
2023-03-31 12:10:12 +03:00
}
2023-07-03 19:05:50 +03:00
example func.basic-example {
; func: a b c // func executed
}