Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Veslo5/Mond

 
 

Repository files navigation

Mond Logo

Features

Trying it

You can try it in your browser!

The Mond REPL in action

Alternatively, the Mond REPL is available as a dotnet tool:

dotnet tool install -g Mond.Repl

Example

import Seq;

var random = Random();
var total = Seq.range(0, 100)
    |> Seq.select(() -> random.next(1, 10))
    |> Seq.sum();

printLn("average = {0}".format(total / 10));

Install

Mond is available on NuGet. To install it, use the following command in the Package Manager Console.

PM> Install-Package Mond

The remote debugger is also available on NuGet.

PM> Install-Package Mond.RemoteDebugger

Syntax highlighting and debugging functionality is provided in Visual Studio Code with the Mond VSCode extension.

Documentation

Please check the wiki for documentation.

About

A scripting language for .NET Core

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 69.7%
  • JavaScript 26.0%
  • TypeScript 2.8%
  • CSS 1.1%
  • HTML 0.4%