neeilang is a programming language created in 2019 by Neeilan Selvalingam.
| #1415on PLDB | 7Years Old |
git clone https://github.com/neeilan/neeilangFast, type-safe, object-oriented language by yours truly
fn main() : Int {
var a : Int = 5;
var b : Int = 3;
print a + b; // 8
print a - b; // 2
print b - a; // -2
if (a >= 5) {
print "a >= 5"; // a >= 5
}
if (a > 5) {
print "a > 5"; // Not executed
}
if (a < 5) {
print "a < 5"; // Not executed
}
if (5 <= a) {
print "5 <= a"; // 5 <= a
}
| Feature | Supported | Example | Token |
|---|---|---|---|
| Comments | ✓ | // A comment | |
| Line Comments | ✓ | // A comment | // |
| Semantic Indentation | X |