gemstone/examples/lib_common.txt

7 lines
85 B
Plaintext
Raw Permalink Normal View History

2024-06-10 00:12:20 +00:00
fun swap(in out float: a, in out float: b) {
float: c = a
a = b
b = c
}