mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-16 10:00:15 +00:00
17 lines
265 B
Text
17 lines
265 B
Text
app "expects"
|
|
packages { pf: "zig-platform/main.roc" }
|
|
imports []
|
|
provides [main] to pf
|
|
|
|
expect
|
|
a = 1
|
|
b = 2
|
|
|
|
a == b
|
|
|
|
main =
|
|
x = 42
|
|
expect x != x
|
|
dbg x
|
|
dbg "Fjoer en ferdjer frieten oan dyn geve lea"
|
|
"Program finished!\n"
|