A simple programming language that anyone can read, and where nothing is implied.
Go to file
Andrew Lalis d9d1b539cd Added compiler stub, more examples.
git status
2023-06-01 13:35:12 +02:00
compiler Added compiler stub, more examples. 2023-06-01 13:35:12 +02:00
examples Added compiler stub, more examples. 2023-06-01 13:35:12 +02:00
LICENSE Initial commit 2023-03-23 14:29:17 +01:00
README.md Added compiler stub, more examples. 2023-06-01 13:35:12 +02:00

README.md

nimp

A simple programming language that anyone can read, and where nothing is implied.

nimp is designed to be intentionally verbose to the point of pain, because it is meant to be read by anyone, including non-programmers, without sacrificing functionality.

Here's how you'd write a Hello world program in nimp:

import module io from standard-library.

call io.print with contents as "Hello world!".

Everything in nimp is defined as a sentence that can be read in plain English.