function add( x: Float, y: Float ) { | |
return x + y; | |
} | |
function addOne( x: Float ) { | |
return add( 1, x ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
function add( x: Float, y: Float ) { | |
return x + y; | |
} | |
function addOne( x: Float ) { | |
return add( 1, x ); | |
} |