BASIC    up
  similar languages: ABC   Amos   Euphoria   Profan   REXX  
 


 Hello World   Michael Neumann
PRINT "Hello World"
Prints "Hello World" onto the screen.


 Squares   Michael Neumann
FOR I=1 TO 10
   PRINT I*I;
NEXT I
Outputs the squares from 1 to 10.