6 lines
77 B
Text
6 lines
77 B
Text
main : _Int ;
|
|
main = double 3 ;
|
|
|
|
double : _Int -> _Int ;
|
|
double x = x + x ;
|
|
|