Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

README.md

Examples

Natural Numbers

This program prints the first n natural numbers

Code

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.