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

Tree @master (Download .tar.gz)

countdown.castile @masterraw · history · blame

1
2
3
4
5
6
7
8
fun main() {
  num = 10;
  while (num > 0) {
    print(str(num));
    num = num - 1
  }
  print("Done.")
}