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

Tree @master (Download .tar.gz)

spawn.bhu @masterraw · history · blame

F = ^ {
  I = 10
  while I > 0 {
    Print "F was spawned!", EoL
    I = I - 1
  }
}

Print "Spawning F..."

Spawn F

Print "hello", EoL