Files

8 lines
87 B
Plaintext
Raw Permalink Normal View History

export fn increment(@x) {
return x + 1
}
export fn decrement(@x) {
return x - 1
}