mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 23:31:12 +00:00
11 lines
147 B
Text
11 lines
147 B
Text
app "test" provides [main] to "./platform"
|
|
|
|
main =
|
|
x = "abc"
|
|
|
|
getX = \{} -> x
|
|
|
|
h = \{} -> (getX {})
|
|
#^{-1} {}* -[[h(3) Str]]-> Str
|
|
|
|
h {}
|