mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-23 08:48:03 +00:00
9 lines
190 B
Text
9 lines
190 B
Text
app [main!] { pf: platform "./platform/main.roc" }
|
|
|
|
import pf.Stdout
|
|
|
|
main! = || {
|
|
my_record = { name: "test", count: 42 }
|
|
result = Str.inspect(my_record)
|
|
Stdout.line!(result)
|
|
}
|