-
Notifications
You must be signed in to change notification settings - Fork 89
/
README
39 lines (29 loc) · 1.25 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
What's that?
~~~~~~~~~~~~
This tarball contains the following:
- source snapshots of Nemerle Compiler (ncc/),
- Nemerle Documentation (doc/),
- standard library for Nemerle (lib/),
- some examples of Nemerle programs (snippets/),
- a few useful tools (e.g. synatx highlighting modes) (misc/),
- binary Nemerle compiler needed to compile itself (boot/).
Nemerle is functional-object-oriented-imperative hybrid programming
language that targets .NET platform. It is now in developement and
has not yet reached a stable release.
To find out more, and to get latest version, please visit:
http://nemerle.org/
Documentation
~~~~~~~~~~~~~
Static copies of our wiki can be found in doc/html/. The online version
can be accessed at http://nemerle.org/
Build from sources
~~~~~~~
* Generic line
xbuild NemerleAll-Mono.nproj /p:TargetFrameworkVersion=v(3.5 or 4.0 or 4.5 or 4.5.1) /p:Configuration=Release(or Debug) /t:Stage4(1 - 4) /tv:4.0(Needed for framework 4.0 and above)
* Release 3.5
xbuild NemerleAll-Mono.nproj /p:TargetFrameworkVersion=v3.5 /p:Configuration=Release /t:Stage4
* Debug 4.0
xbuild NemerleAll-Mono.nproj /p:TargetFrameworkVersion=v4.0 /p:Configuration=Debug /t:Stage4 /tv:4.0
Contact
~~~~~~~
Please check http://nemerle.org/ for contact instructions.