Skip to content

Files

Latest commit

8a82df1 · Dec 23, 2022

History

History

examples

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Dec 23, 2022
Dec 23, 2022
Dec 23, 2022
Dec 23, 2022
Dec 23, 2022

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.