Revision [130]
This is an old revision of ValaGenieintro made by Droope on 2009-08-01 07:19:59.
What is this?
An introduction to using the Genie Programming language under Puppy Linux
0 num = 32
else
num = num + 96
return (char) num
def addRandomChar(myText:string) : string var retText = new StringBuilder
retText.append(myText)
retText.append_c(getRandomChar())
return retText.str
init
USAGE:string = "Usage:\n\t ./imt \"some text for monkeys to generate\" "
theText:string = args[1]
if theText