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

Tree @master (Download .tar.gz)

share.bhu @masterraw · history · blame

A = [1, 2, 3]
B = A

PrintAB = ^ {
  Print "A = ", A, EoL
  Print "B = ", B, EoL
}

PrintAB;

B[2] = "foo"
PrintAB;