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

Mond

< >

Mond is a programming language created in 2014 by Rohan Singh.

#917on PLDB 10Years Old
Download source code:
git clone https://github.com/Rohansi/Mond
HomepageSource Code

A scripting language for C# which can be embedded in Lua-like manner.


Example from the web:
// documentation can be found here: https://github.com/Rohansi/Mond/wiki seq range(start, end) { for (var i = start; i <= end; i++) yield i; } seq where(list, filter) { foreach (var x in list) { if (filter(x)) yield x; } } seq select(list, transform) { foreach (var x in list) yield transform(x); } fun toArray(list) { var array = []; foreach (var value in list) { array.add(value); } return array; } return range(0, 1000) |> where(x -> x % 2 == 0) |> select(x -> x / 2) |> toArray();
Infinity NaN break case const continue debugger default do else false for foreach fun global if in null return seq switch true undefined var while yield

- Build the next great programming language Add About Search Keywords Livestreams Labs Resources Acknowledgements

Built with Scroll v144.0.0