Top 1,000 Features Creators Resources Blog Explore Download
GitHub icon

neeilang

< >

neeilang is a programming language created in 2019 by Neeilan Selvalingam.

Source code:
git clone https://github.com/neeilan/neeilang
#1392on PLDB 5Years Old

Fast, type-safe, object-oriented language by yours truly


Example from the web:
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 }

Language features

Feature Supported Token Example
Comments ✓
// A comment
Line Comments ✓ //
// A comment
Semantic Indentation X

View source

- Build the next great programming language · About · Acknowledgements · Extensions · Day 624 · feedback@pldb.io