A simple programming language that anyone can read, and where nothing is implied.
Go to file
Andrew Lalis a02d2ded29 Changed to plain string parsing. 2023-06-27 06:45:28 +02:00
compiler Changed to plain string parsing. 2023-06-27 06:45:28 +02:00
examples Upgraded streams. 2023-06-27 06:21:13 +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.