gemstone/examples/lib_common.txt

7 lines
85 B
Plaintext

fun swap(in out float: a, in out float: b) {
float: c = a
a = b
b = c
}