if i use purescript define function
add :: Int -> Int -> Int
add x y = x + y
i want to compile like
function add(x){
return function(y){
x + y
}
}
it’s possible ?
if i use purescript define function
add :: Int -> Int -> Int
add x y = x + y
i want to compile like
function add(x){
return function(y){
x + y
}
}
it’s possible ?
after, test , sorry ,already is