mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-29 22:51:51 +03:00
17 lines
227 B
Idris
17 lines
227 B
Idris
|
|
||
|
%nomangle
|
||
|
foo : Int -> Int
|
||
|
foo x = x
|
||
|
|
||
|
%nomangle "$_baz"
|
||
|
baz : Int -> Int
|
||
|
baz x = x
|
||
|
|
||
|
%nomangle "refc:idr_another_name"
|
||
|
"javascript:another_name"
|
||
|
anotherName : Int -> Int
|
||
|
anotherName x = x
|
||
|
|
||
|
main : IO ()
|
||
|
main = pure ()
|