8 lines
97 B
Plaintext
8 lines
97 B
Plaintext
![]() |
export fn increment = (x) => {
|
||
|
return x + 1
|
||
|
}
|
||
|
|
||
|
export fn decrement = (x) => {
|
||
|
return x - 1
|
||
|
}
|