git @ Cat's Eye Technologies Bhuna / master eg / share3.bhu
master

Tree @master (Download .tar.gz)

share3.bhu @masterraw · history · blame

1
2
3
4
5
6
7
A = [1, 2, 3]
I = 10
while I > 0 {
  A[2] = I
  Print A, EoL
  I = I - 1
}