Example Code
Here are some examples of the language:
"Hello world" program:
print "hello world" endProgram to display a pop-up message box with the words "Hello, World!" on it:
nomainwin notice "Hello world!" end nomainwin notice "Example program" + chr$(13) + "Hello world!" endProgram to display an input box:
nomainwin prompt "Enter your name:";response$ notice "Response:"+ chr$(13) +response$ endRunning another application using Liberty BASIC:
nomainwin run "notepad.exe" endPrinting multiplication table of 5 on form:
for i = 1 to 10 res = 5 * i print res next i endRead more about this topic: Liberty BASIC
Famous quotes containing the word code:
“Acknowledge your will and speak to us all, This alone is what I will to be! Hang your own penal code up above you: we want to be its enforcers!”
—Friedrich Nietzsche (18441900)
“Many people will say to working mothers, in effect, I dont think you can have it all. The phrase for have it all is code for have your cake and eat it too. What these people really mean is that achievement in the workplace has always come at a priceusually a significant personal price; conversely, women who stayed home with their children were seen as having sacrificed a great deal of their own ambition for their families.”
—Anne C. Weisberg (20th century)