git @ Cat's Eye Technologies Castile / master eg / simple.castile
master

Tree @master (Download .tar.gz)

simple.castile @masterraw · history · blame

1
2
3
4
5
6
7
8
9
fun main() {
  x = 12;
  if 4 < 5 {
    x = 2 * 3 + 4
  } else {
    x = 0
  }
  return x
}