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

Mond

< >

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

Source code:
git clone https://github.com/Rohansi/Mond
#1011on PLDB 10Years Old

A scripting language for .NET Core


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

View source

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