-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
# Noxan | ||
> The noxan golfing language is a prefix programming language. | ||
Noxan is a prefix based programming language that is designed for code golfing. | ||
|
||
## Get started | ||
For example, `+1 +3 4` is tokenized as `1 + 3 + 4`. | ||
Since Noxan is prefix, operators come before their operands. | ||
For example, `+1 +3 4` is similar to `1 + 3 + 4` in infix. |