namespace Boo1
import System
def Main(args as (string)): #-> (string) is array...
for s in range(10):
print "Hello, Boo ! "+ s
f = myFunc("Hello, World !")
for c in f:
print c
l = ["ABC", 3, "BBQ", 5]
print
print l[2]
print "Press any key to continue . . . "
Console.ReadKey(true)
def myFunc(str as string)as char*:
for i in str:
yield i
