Nemerle
   HOME

TheInfoList



OR:

Nemerle is a general-purpose, high-level,
statically typed In computer programming, a type system is a logical system comprising a set of rules that assigns a property called a ''type'' (for example, integer, floating point, string) to every '' term'' (a word, phrase, or other set of symbols). Usu ...
programming language A programming language is a system of notation for writing computer programs. Programming languages are described in terms of their Syntax (programming languages), syntax (form) and semantics (computer science), semantics (meaning), usually def ...
designed for platforms using the
Common Language Infrastructure The Common Language Infrastructure (CLI) is an open specification and technical standard originally developed by Microsoft and standardized by International Organization for Standardization, ISO/International Electrotechnical Commission, IEC (ISO/ ...
(
.NET The .NET platform (pronounced as "''dot net"'') is a free and open-source, managed code, managed computer software framework for Microsoft Windows, Windows, Linux, and macOS operating systems. The project is mainly developed by Microsoft emplo ...
/ Mono). It offers functional, object-oriented, aspect-oriented, reflective and imperative features. It has a simple C#-like syntax and a powerful
metaprogramming Metaprogramming is a computer programming technique in which computer programs have the ability to treat other programs as their data. It means that a program can be designed to read, generate, analyse, or transform other programs, and even modi ...
system. In June 2012, the core developers of Nemerle were hired by the Czech
software Software consists of computer programs that instruct the Execution (computing), execution of a computer. Software also includes design documents and specifications. The history of software is closely tied to the development of digital comput ...
development company JetBrains. The team was focusing on developing Nitra, a framework to implement extant and new programming languages. Both the Nemerle language and Nitra have seemingly been abandoned or discontinued by JetBrains; Nitra has not been updated by its original creators since 2017 and Nemerle is now maintained entirely by the Russian Software Development Network, independently from JetBrains, although no major updates have been released yet and development is progressing very slowly. Neither Nemerle, nor Nitra have been mentioned or referenced by JetBrains for years. Nemerle is named after the Archmage Nemmerle, a character in the fantasy novel '' A Wizard of Earthsea'' by
Ursula K. Le Guin Ursula Kroeber Le Guin ( ; Kroeber; October 21, 1929 – January 22, 2018) was an American author. She is best known for her works of speculative fiction, including science fiction works set in her Hainish universe, and the ''Earthsea'' fantas ...
.


Features

Nemerle's most notable feature is the ability to mix styles of programming that are object-oriented and functional. Programs may be structured using object-oriented concepts such as classes and namespaces, while methods can (optionally) be written in a functional style. Other notable features include: * strong
type inference Type inference, sometimes called type reconstruction, refers to the automatic detection of the type of an expression in a formal language. These include programming languages and mathematical type systems, but also natural languages in some bran ...
* a flexible metaprogramming subsystem (using macros) * full support for
object-oriented programming Object-oriented programming (OOP) is a programming paradigm based on the concept of '' objects''. Objects can contain data (called fields, attributes or properties) and have actions they can perform (called procedures or methods and impl ...
(OOP), in the style of C#,
Java Java is one of the Greater Sunda Islands in Indonesia. It is bordered by the Indian Ocean to the south and the Java Sea (a part of Pacific Ocean) to the north. With a population of 156.9 million people (including Madura) in mid 2024, proje ...
, and C++ * full support for functional programming, in the style of ML,
OCaml OCaml ( , formerly Objective Caml) is a General-purpose programming language, general-purpose, High-level programming language, high-level, Comparison of multi-paradigm programming languages, multi-paradigm programming language which extends the ...
, and
Haskell Haskell () is a general-purpose, statically typed, purely functional programming language with type inference and lazy evaluation. Designed for teaching, research, and industrial applications, Haskell pioneered several programming language ...
, with these features: **
higher-order function In mathematics and computer science, a higher-order function (HOF) is a function that does at least one of the following: * takes one or more functions as arguments (i.e. a procedural parameter, which is a parameter of a procedure that is itself ...
s **
pattern matching In computer science, pattern matching is the act of checking a given sequence of tokens for the presence of the constituents of some pattern. In contrast to pattern recognition, the match usually must be exact: "either it will or will not be a ...
** algebraic types ** local functions **
tuple In mathematics, a tuple is a finite sequence or ''ordered list'' of numbers or, more generally, mathematical objects, which are called the ''elements'' of the tuple. An -tuple is a tuple of elements, where is a non-negative integer. There is o ...
s and anonymous types **
partial application Partial may refer to: Mathematics *Partial derivative, derivative with respect to one of several variables of a function, with the other variables held constant ** ∂, a symbol that can denote a partial derivative, sometimes pronounced "partial ...
of functions The metaprogramming system allows for great
compiler In computing, a compiler is a computer program that Translator (computing), translates computer code written in one programming language (the ''source'' language) into another language (the ''target'' language). The name "compiler" is primaril ...
extensibility, embedding domain-specific languages, partial evaluation, and aspect-oriented programming, taking a high-level approach to lift as much of the burden as possible from programmers. The language combines all
Common Language Infrastructure The Common Language Infrastructure (CLI) is an open specification and technical standard originally developed by Microsoft and standardized by International Organization for Standardization, ISO/International Electrotechnical Commission, IEC (ISO/ ...
(CLI) standard features, including parametric polymorphism, lambdas, extension methods etc. Accessing the libraries included in the .NET or Mono platforms is as easy as in C#.


Type inference

def x = 1; // int def myList = List(); // generic List type T is deduced from the usage in the next line myList.Add(x); // compiler deduces type of T as int making myList type of List nt


Everything is an expression

def x = ; def x = if (DateTime.Now.DayOfWeek

DayOfWeek.Monday) // if, using, try are also expressions "Monday" else "other day"; def x = try int.Parse(someString) catch ; def x = returnBlock : ;


Tuples

def k = (1, "one"); // k : (int * string) def (a, b) = k; // a = 1, b = "one"


Pattern matching

def result = match (number)


Functional types and local functions

using System.Console; // classes and modules (static classes) can be put in namespaces def next(x) ; // the type of x argument and other function arguments can be deduced from usage def mult(x, y) ; def fibonacci(i) ; WriteLine(next(9)); // 10 similar to "Console.WriteLine(next(9));" WriteLine(mult(2, 2)); // 4 WriteLine(fibonacci(10)); // 55


Variants

Variants (called data types or sum types in SML and OCaml) are forms of expressing data of several different kinds: variant RgbColor


Metaprogramming

Nemerle's macro system allows for creating, analysing, and modifying program code during compiling. Macros can be used in the form of a method call or as a new language construct. Many constructs within the language are implemented using macros (if, for, foreach, while, using etc.). "if" macro example: macro @if (cond, e1, e2) syntax ("if", "(", cond, ")", e1, Optional (";"), "else", e2) // using this macro in code: def max = if (a > b) a else b; // during a compile time the upper line will be transformed to this: def max = match (a > b)


Braceless syntax

Similarly to the braceless syntax later added to Scala, Nemerle allows the programmer to optionally use a whitespace-sensitive syntax based on the
off-side rule The off-side rule describes syntax of a computer programming language that defines the bounds of a code block via indentation. The term was coined by Peter Landin, possibly as a pun on the offside law in association football. An off-side ...
, similarly to Python. The following curly-brace snippet: using System.Console; uxclass FooBar could be rewritten as: using System.Console; ux\ class FooBar public static Main(): void WriteLine("Hello") static Foo (x: int): void if (x

3) def y = x * 42; Foo (x) else Map (fun (x) ) static Bar(): int def foo = 2 + 7 * 13 foo
Notably, it is not possible to break expressions or alternative clauses in matches over multiple lines without using a backslash \: // This will not compile ... static Bar(): int def foo = 2 + 7 * 13 foo match (s) , "a" , "aa" => 1 , "b" , "bb" => 2 , _ => 0 // But this will: static Bar(): int def foo = 2 \ + 7 \ * 13 foo match (s) , "a" \ , "aa" => 1 , "b" \ , "bb" => 2 , _ => 0 In order to activate this syntax, the user must add #pragma indent to the top of the file or use the compiler option -i.


IDE

Nemerle can be integrated into the
integrated development environment An integrated development environment (IDE) is a Application software, software application that provides comprehensive facilities for software development. An IDE normally consists of at least a source-code editor, build automation tools, an ...
(IDE) Visual Studio 2008. It also has a fully free IDE based on Visual Studio 2008 Shell (like Visual Studio Express Editions) and SharpDevelop
link to plugin source code
. Nemerle can be also integrated into Visual Studio (up until 2017) using add-ins and extensions.Visual Studio 2010 add-in
/ref>


Examples


Hello, World!

The traditional '' Hello World!'' can be implemented in a more C#-like fashion: class Hello or more simply: System.Console.WriteLine("Hello, world!");


Examples of macros

Macros allow generating
boilerplate code In computer programming, boilerplate code, or simply boilerplate, are sections of code that are repeated in multiple places with little to no variation. When using languages that are considered ''verbose'', the programmer must write a lot of boile ...
with added static checks performed by the compiler. They reduce the amount of code that must be written by hand, make code generation safer, and allow programs to generate code with compiler checks, while keeping source code relatively small and readable.


String formatting

The string formatting macro simplifies variables to string manipulations using $ notation: def s = $"The number is $i"; //insert the value of the variable i where $i is placed def s = $"$x + $y = $(x+y)"; // $(...) can be used to make calculations or access members


Declarative code generation

''StructuralEquality'', ''Memoize'', ''json'', and ''with'' are macros which generate code in compile time. Though some of them (''StructuralEquality'', ''Memoize'') can look like C# attributes, during compiling, they will be examined by the compiler and transformed to appropriate code using logic predefined by their macros. tructuralEquality// Implement IEquatable ample.Net interface using by element comparison equality. class Sample


Database accessibility

Using Nemerle macros for SQL you can write: ExecuteReaderLoop("SELECT firstname, lastname FROM employee WHERE firstname = $myparm", dbcon, ); instead of string sql = "SELECT firstname, lastname FROM employee WHERE firstname = :a"; using (NpgsqlCommand dbcmd = new NpgsqlCommand (sql, dbcon, dbtran)) and this is not just hiding some operations in a library, but additional work performed by the compiler to understand the query string, the variables used there, and the columns returned from the database. The ExecuteReaderLoop macro will generate code roughly equivalent to what you would have to type manually. Moreover, it connects to the database at compilation time to check that your SQL query really makes sense.


New language constructs

With Nemerle macros you can also introduce some new syntax into the language: macro ReverseFor (i, begin, body) syntax("ford", "(", i, ";", begin, ")", body) defines a macro introducing the syntax and can be used like ford (i ; n) print (i);


Nemerle with ASP.NET

Nemerle can be either embedded directly into ASP.NET: <%@ Page Language="Nemerle" %>
Please enter your name:

...Or stored in a separate file and entered with a single line: <%@ Page Language="Nemerle" Src="test.n" Inherits="Test" %>


PInvoke

Nemerle can take advantage of native platform libraries. The syntax is very similar to C#'s and other .NET languages. Here is the simplest example: using System; using System.Runtime.InteropServices; class PlatformInvokeTest


References


Further reading


Publications about Nemerle in RSDN Magazine, Russian official science magazine
*
Presentation "Nemerle is notable" by Denis Rystsov

Article "Unconventional languages for unconventional supercomputers" by Andrey Adinetz


External links

*
GitHub project and repository (new development)Google Code project and repository (old development)Nemerle ForumNemerle presentation on Microsoft Research SSCLI RFP II Capstone 2005 workshop
{{DEFAULTSORT:Nemerle Programming languages Procedural programming languages .NET programming languages Object-oriented programming languages Programming languages created in 2003 2003 software High-level programming languages Aspect-oriented programming Functional languages Statically typed programming languages