Nuua is a programming language created in 2018.
#1722on PLDB | 6Years Old |
git clone https://github.com/nuua-io/Nuua
The Nuua Programming Language - A zero dependencies, high level strong typed, interpreted language built on the top of modern C++17.
class Triangle {
b: float
h: float
fun area(): float -> (self.b * self.h) / 2.0
}
fun main(argv: [string]) {
t := Triangle!{b: 10.0, h: 5.0}
print "The area is: " + t.area() as string
}