2023-03-23 13:29:17 +00:00
|
|
|
# nimp
|
2023-06-01 11:35:12 +00:00
|
|
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
```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.
|