Top 1K Features Creators Events Podcasts Books Extensions Interviews Blog Explorer CSV

neeilang

< >

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

#1377on PLDB 5Years Old
Download source code:
git clone https://github.com/neeilan/neeilang
Source Code

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 Example Token
Comments ✓ // A comment
Line Comments ✓ // A comment //
Semantic Indentation X
- Build the next great programming language · Add · About · Search · Keywords · Livestreams · Labs · Resources · Acknowledgements · Part of the World Wide Scroll