Languages Features Creators CSV Resources Challenges Add Language
GitHub icon

neeilang

neeilang - Programming language

< >

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

#1214on PLDB 4Years Old 49Users
0Books 0Papers

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
avail.html · neeilang.html · hilvl.html

View source

- Build the next great programming language · Search · Day 215 · About · Blog · Acknowledgements · Traffic · Traffic Today · GitHub · feedback@pldb.com