This program prints the first n natural numbers
PRINT "Program to print natural numbers Written in !Python \n"
PRINT "Enter Limit \n"
INPUT a
LET i = 1
PRINT "Printing numbers from " i " to " a "\n"
WHILE i < a {
PRINT i "\n"
LET i = i + 1
}
I am too tired to document rest of the examples here. Check out the .not
files for all examples.