Nomad is an esoteric programming language created in 2021 by Samuel Kelemen.
#2237on PLDB | 3Years Old |
git clone https://github.com/asyncengineering/nomad
Nomad is a multi-paradigm language created from 2018 to 2021 with the goal of simplifying modern programming to as few concepts as possible, in order to facilitate complexity in other areas; Specifically, probabilistic programming.
Direction: type = North | East | South | West
Suite: type = Diamond | Spade | Club | Heart
directionHeading: (direction: #Direction) -> Nat
directionHeading= direction ?
| North => 0
| East => 90
| South => 180
| West => 270
sum: (numbers :List[Int]) -> Int =
numbers ?
| [] => 0
| head :: tail => head + sum tail