RosettaCodeData/Task/Function-definition/Lang/function-definition-5.lang

4 lines
105 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
fp.multiply = ($[a], $[b]) -> {
return parser.op($*a * $*b) # Pointers can be dereferenced by using *
}