Re: Mono 0.20 source RPMs (Re: [Mono-list] Mono supported Platforms)

2003-02-27 Thread Michal Moskal
daemon_request_response_internal): should not be reached aborting... Abort make[1]: *** [menu.exe] Error 134 make[1]: Leaving directory `/home/users/builder/rpm/BUILD/gtk-sharp-0.8/sample' -- : Michal Moskal : malekith/at/pld-linux.org : GCS {C,UL}$ a? !tv : PLD Linux ::: Wr

Re: [Mono-list] Lame newbie question about debugger/autogen.sh

2003-03-01 Thread Michal Moskal
utogen.sh is located before > running the script as "./autogen.sh". The "." means that the location is > the current directory. He apparently is. Try using ls -l /bin/sh, maybe dangling link. No other clue. -- : Michal Moskal : malekith/at/pld-linux.org : GCS {C,U

Re: [Mono-list] SIGKILL/SIGTERM handling

2003-03-09 Thread Michal Moskal
h... >From signal(7) manpage: The signals SIGKILL and SIGSTOP cannot be caught, blocked, or ignored. Therefore you can only intercept SIGTERM. -- : Michal Moskal : malekith/at/pld-linux.org : GCS {C,UL}$ a? !tv : PLD Linux ::: Wroclaw University, CS Dept :

Re: [Mono-list] C#/.NET Generics update and summary

2003-03-30 Thread Michal Moskal
. You can do C++ like macro expansion on-the-fly using just one CIL code (as in ML). More over you don't need separate Array for Object, String and FooBar as long, as they all are reference types. Anyway consider Don Syme's paper about generics. -- : Michal Moskal : malekith/at/

Re: [Mono-list] Mono Tools and Utilities

2003-10-13 Thread Michal Moskal
Debug info can be problem though. -- : Michal Moskal :: http://www.kernel.pl/~malekith : GCS {C,UL}$ a? !tv : When in doubt, use brute force. -- Ken Thompson : {E-,w}-- {b++,e}>+++ h ___ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] mono-0.28/libgc/misc.c:GC_clear_stack_inner comments, please

2003-10-26 Thread Michal Moskal
stack out of pointers. > Mono applications abnormally terminate upon completion: > perhaps something going wrong with recursion? Perhaps the limit variable is set wrong, and this function hits the OS limit? -- : Michal Moskal :: http://www.kernel.pl/~malekith : GCS {C,UL}$ a? !tv

[Mono-list] Announce: Nemerle 0.1.0 released

2004-02-17 Thread Michal Moskal
Nemerle ~~~ We are pleased to announce the 0.1 release of Nemerle -- a new hybrid (functional, object-oriented and imperative) programming language for the .NET platform. Key features of the language include: * simplicity, * C#-like syntax, * .NET integration, * an easy to u

Re: [Mono-list] Socket code.

2004-02-22 Thread Michal Moskal
end(s.Substring(0,len)); Shouldn't it be: s = Encoding.ASCII.GetString(bytes, 0, len); buf.Append(s); Passing some random junk (ergh.. does new byte[] clear memory?) to encodoer doesn't seem good idea. -- : Michal Moskal :: http://www.kernel.pl/~malekith :: GCS !tv h e>

Re: [Mono-list] Socket code.

2004-02-22 Thread Michal Moskal
d to zero or null (just checked IL reference), so it's not exactly garbage. -- : Michal Moskal :: http://www.kernel.pl/~malekith :: GCS !tv h e>+++ b++ : When in doubt, use brute force. -- Ken Thompson :: UL$ C++ E--- a? ___ Mono-list maill

Re: [Mono-list] Socket code.

2004-02-23 Thread Michal Moskal
On Mon, Feb 23, 2004 at 10:21:06AM +, Jonathan Gilbert wrote: > At 11:59 AM 22/02/2004 -0800, you wrote: > >On Sun, 2004-02-22 at 01:17, Michal Moskal wrote: > >> On Sat, Feb 21, 2004 at 04:31:00PM -0800, George Farris wrote: > >> > I have some socket code

Re: [Mono-list] Socket code.

2004-02-23 Thread Michal Moskal
On Mon, Feb 23, 2004 at 08:51:36PM +1100, Iain McCoy wrote: > On Mon, 2004-02-23 at 19:37, Michal Moskal wrote: > > This ain't C -- for errors you should get exception, not -1. > Not so. According to microsoft's guidelines, it depends on the error - > if it's an erro

Re: [Mono-list] C# Hexadecimal Escape Char Anomalies???

2004-02-23 Thread Michal Moskal
thon? > > > > Why do my 0xff's get translated to 0x3f's??? > > I get this: Doesn't it simply depend on current locale setting? ASCII 3f is '?', so it seems to be a problem with encodings. -- : Michal Moskal :: http://www.kernel.pl/~malekith :: GCS !tv h e&g

Re: [Mono-list] Trouble accessing interface methods via as operator

2004-04-13 Thread Michal Moskal
es come from? IServices seen by 'type' and 'as' can be different even when they share the name. -- : Michal Moskal :: http://www.kernel.pl/~malekith :: GCS !tv h e>+++ b++ : When in doubt, use brute force. -- Ken Thompson :: UL$ C++ E--- a? ___ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] not installing mono.pc?

2004-05-06 Thread Michal Moskal
endancy > btw, I installed mono using the yum repository for Fedora Core 1, if > this makes any difference (I should get the same stuff!) This is bug in monodevelop's configure.in, it looks for mono.pc instead of monodoc.pc. -- : Michal Moskal :: http://www.kernel.pl/~malekith

[Mono-list] Nemerle 0.1.2 released

2004-04-28 Thread Michal Moskal
The 0.1.2 release of the Nemerle compiler has hit our server. 0.1.2, Apr 28 2004 This release brings several important bugfixes, more documentation (great thanks to our techwriter for making it more readable) and improvements in macro subsystem. * Macros are now hygienic -- that is each

Re: [Mono-list] Re: [Gtk-sharp-list] Gtk# 0.91.1 released

2004-05-05 Thread Michal Moskal
compile is to first remove monodoc installed in old version and then compile gtk-sharp. I guess there should be an option to Gtk#'s configure to disable monodoc on damand. -- : Michal Moskal :: http://www.kernel.pl/~malekith :: GCS !tv h e>+++ b++ : When in d

[Mono-list] Nemerle 0.1.3 released

2004-05-30 Thread Michal Moskal
macros is being constantly reworked and improved. * List.Member and the like instead of physical == equality use Equals() method. * Several bugfixes, some critical, as usual. #v- Have a nice testing! -- : Michal Moskal :: http://www.kernel.pl/~malekith :: GCS !tv h e>++

Re: [Mono-list] Nemerle 0.1.3 released

2004-05-30 Thread Michal Moskal
On Sun, May 30, 2004 at 08:47:49PM +0200, Michal Moskal wrote: > The source tarball can be downloaded from: > > http://nemerle.org/download/nemerle-0.1.2.tar.gz Oops, it should be: http://nemerle.org/download/nemerle-0.1.3.tar.gz Sorry. -- : Michal Moskal :: http://www.

Re: [Mono-list] Removing the 'Compilation succeeded' message

2004-06-08 Thread Michal Moskal
error messages and exit status is IMHO enough. -- : Michal Moskal :: http://www.kernel.pl/~malekith :: GCS !tv h e>+++ b++ : ::: Logic is a nice contrast to the Real World. :: UL$ C++ E--- a? ___ Mono-list maillist - [EMAIL PROTECTED] http

[Mono-list] Nemerle 0.1.4 released

2004-06-30 Thread Michal Moskal
s (like requiring implemented interface methods to be public etc). * Several bugfixes. Other stuff: * Added examples written by students during Nemerle course. Some new OpenGL/SDL examples by Kamil. #v- Have fun testing it :-) -- : Michal Moskal :: http://www.kernel.pl/~

[Mono-list] Nemerle 0.2.0 released

2004-09-12 Thread Michal Moskal
ted. * CodeDomProvider for Nemerle has been submitted by Atsushi Enomoto. There is some preliminary work on XSP supporting Nemerle ASP.NET pages. * Async methods macros have been written by Ricardo Fernandez Pascual. -- : Michal Moskal :: http://www.kernel.pl/~malekith :: GCS !tv h e&g

[Mono-list] Nemerle 0.2.1 released

2004-09-18 Thread Michal Moskal
nt (x, y) } * Fixed a few minor bugs in heap implementation, defining of command-line preprocessor symbols, pretty printing of macro expressions, etc. -- : Michal Moskal :: http://www.kernel.pl/~malekith :: GCS !tv h e>+++ b++ : ::: Logic is a nice contrast to the

Re: [Mono-list] [Off-topic] "if else" or "switch" ?

2004-10-16 Thread Michal Moskal
to change in the mcs. The runtime is what should be fixed, if anything. Otherwise you're going to require other compilers to have -optimize-mono, -optmize-ms-net, -optimize-pnet and -optimize-some-other-bizzarre-yet-unknown-net-implemnetation for maximum performance. And this isn't an

Re: [Mono-list] [Off-topic] "if else" or "switch" ?

2004-10-16 Thread Michal Moskal
long in .NET compilers, because they're just not feasible to spot and > perform at JIT time. Everything here is about the definition of high level :) -- : Michal Moskal :: http://www.kernel.pl/~malekith :: GCS !tv h e>+++ b++ : ::: Logic is a nice contrast to the Real World. :: UL$ C++

Re: [Mono-list] [Off-topic] "if else" or "switch" ?

2004-10-17 Thread Michal Moskal
listed there seems bogus. > I must admit that I do not quite understand how > ldloca and ldarga interact would interact with tail calls. ld{loc,arg}a loads address of a value in the current stack frame. Which you're going to destroy with the tail call. -- : Michal Moskal :: http://www

Re: [Mono-list] [Off-topic] "if else" or "switch" ?

2004-10-17 Thread Michal Moskal
On Sat, Oct 16, 2004 at 07:08:09PM -0500, Marcus wrote: > On Saturday 16 October 2004 3:53 am, Michal Moskal wrote: > > No, I don't think that it's a completely a runtime issue. There are at least > three fundamentally-different mechanisms for handling a switch statement

Re: [Mono-list] Array benchmark

2004-10-09 Thread Michal Moskal
ut the attachment -- array bounds checks. In the first case you need one check and in the second case you need two. But when array bounds checks are removed (with -O=all), the second version can use some internal magic to get it done faster. Bear in mind that it may not be possible to always remove a

Re: [Mono-list] Constructors in C#

2004-11-20 Thread Michal Moskal
7;t find it really clean, without > having concret arguments against it. Of course there are -- what if member is readonly? As for VB -- I don't see anything that cannot be done in C# there. You don't call one ctor from another. -- : Michal Moskal :: http://www.kernel.pl/~malekith :: GC

Re: [Mono-list] Constructors in C#

2004-11-20 Thread Michal Moskal
On Sat, Nov 20, 2004 at 11:05:58AM +0100, Michal Moskal wrote: > > I thought about this too, but I don't find it really clean, without > > having concret arguments against it. > > Of course there are -- what if member is readonly? I forgot about one thing -- it is possib

Re: [Mono-list] I must misunderstand delegates

2004-11-20 Thread Michal Moskal
1.aspx While I personally think it shouldn't be allowed to do so, I wonder what's the reality. Here is our (Nemerle developers) discussion about the issue: http://nemerle.org/mailman/pipermail/bugs/2004-September/000735.html -- : Michal Moskal :: http://www.kernel.pl/~malekith :: GCS !tv h e

Re: [Mono-list] Mixing languages within

2004-12-10 Thread Michal Moskal
e plugins. I refer you to http://nemerle.org/macrouse.html#embedded-languages for some more info. :-) -- : Michal Moskal ::: http://nemerle.org/~malekith/ :: GCS !tv h e>+++ b++ : ::: Logic is a nice contrast to the Real World. :: UL$ C++ E--- a? ___ Mono-l

Re: [Mono-list] Mixing languages within

2004-12-10 Thread Michal Moskal
On Fri, 10 Dec 2004 14:49:44 +, Colin JN Breame <[EMAIL PROTECTED]> wrote: > Michal Moskal wrote: > > >The problem is cross references -- that is if part in language A needs > >part in language B and vice versa. Then the compilers need to agree > >much more --

Re: [Mono-list] Implementing attribute-based code generation

2005-01-14 Thread Michal Moskal
ty of writing a second C# compiler to understand the code that is going to be transformed. That's why having extensible compiler is A Good Thing. -- : Michal Moskal :: http://nemerle.org/~malekith/ :: GCS !tv h e>+++ b++ : No, I will *not* fix your computer...

Re: [Mono-list] svn mirror access problems

2005-01-14 Thread Michal Moskal
e > Installing pkgconfig... > Installing glib... > Installing libgc... > Updating mono > svn: Can't connect to host 'svn.myrealbox.com': Connection refused Temp workaround: http access works fine though, so svn switch --relocate your repo URL and update then. -- : Michal Moskal

[Mono-list] Re: mono/amd64 and nemerle

2005-01-16 Thread Michal Moskal
89M, while in 64 bit mode 117M. > On Thu, 13 Jan 2005 00:39:25 +0100, Michal Moskal > <[EMAIL PROTECTED]> wrote: [...] > > I would just report this to bugzilla, but while it seems simple to fix > > (just some left over) there are probably many more such issues, so I &

Re: [Mono-list] P/Invoke on amd64 was :Marshalling problems

2005-02-12 Thread Michal Moskal
x roke 2.6.10-0.96 #1 Sun Jan 9 06:11:03 CET 2005 x86_64 0 unknown PLD Linux [EMAIL PROTECTED] 07-pinvoke]$ -- : Michal Moskal :: http://nemerle.org/~malekith/ :: GCS !tv h e>+++ b++ : Logic - the art of being wrong with confidence :: UL$ C++ E--- a? _

Re: [Mono-list] P/Invoke on amd64 was :Marshalling problems

2005-02-13 Thread Michal Moskal
ng: 'libopencv'. > Mono-INFO: DllImport error loading library '/usr/local/lib/libopencv.so: > undefined symbol: __gxx_personality_v0'. This seems like another problem -- check if your libopencv is linked with libstdc++. -- : Michal Moskal :: http://nemerle.org/~malekith

Re: [Mono-list] P/Invoke on amd64 was :Marshalling problems

2005-02-13 Thread Michal Moskal
On Sun, 13 Feb 2005 12:41:07 +0100, Michal Moskal <[EMAIL PROTECTED]> wrote: > On Sun, 13 Feb 2005 10:44:20 +, James Fitzsimons > <[EMAIL PROTECTED]> wrote: > > Finally, you should try running mono with MONO_LOG_LEVEL=info and > > > MONO_lOG_MASK=dll. > &g

Re: [Mono-list] P/Invoke on amd64 was :Marshalling problems

2005-02-13 Thread Michal Moskal
d); return 0; } > I am following up on another theory as well to do with the version of > gcc used to build mono. I will let you know if that makes any > difference. The ABI in gcc is rather stable especially when not using C++. -- : Michal Moskal :: http://nemerle.org/~male

Re: [Mono-list] Existing non-case-sensitive .net languages?

2005-02-24 Thread Michal Moskal
Existing > such languages? And if not: Would it be possible to create one or don't > permit the CLR it, so that native-compiler have in this point more freedom > then .net/mono-compiler? CLR permits it, there are even helpers in S.R.E for that. CLS rules prevents names differing only

[Mono-list] Nemerle 0.2.9 released

2005-03-22 Thread Michal Moskal
evel switch. * Simple Nemerle interactive shell has been included in the distribution. * The debug symbol output should work under MS.NET. * The Sioux webserver has been greatly extended. * A syntax highlighting file for Midnight Commander editor. * The htmldumper tool has been

[Mono-list] Nemerle 0.2.10 released

2005-03-31 Thread Michal Moskal
Nemerle.Macros properly [a killer bug] -- : Michal Moskal :: http://nemerle.org/~malekith/ :: GCS !tv h e>+++ b++ : You can't blame yourself for what gorillas did :: UL$ C++ E--- a? ___ Mono-list maillist - Mono-list@lists.ximian.

Re: [Mono-list] Dll loading failure

2005-04-28 Thread Michal Moskal
; main.cs > error CS0006: Cannot find assembly `dodaj.dll' > Log: > > Compilation failed: 1 error(s), 0 warnings How did you compile asm->dll? The file needs to be in the ELF format, linked as a shared library. Specifically using dll from Windows won'

Re: [Mono-list] Dll loading failure

2005-04-28 Thread Michal Moskal
On 4/28/05, Jurek Bartuszek <[EMAIL PROTECTED]> wrote: > Dnia 2005-04-28 17:47, U?ytkownik Michal Moskal napisa?: > > How did you compile asm->dll? > > To .so: > 1) nasm -f elf dodaj.asm -o dodaj.o > 2. ld --shared --soname dodaj.so -o dodaj.so

Re: [Mono-list] Dll loading failure

2005-04-28 Thread Michal Moskal
(mcs, csc, ilasm, ncc...). But you cannot generate .NET byte code out of an x86 assembly language. And of course there is no need (or way) to use P/Invoke with managed code. -- Michal Moskal, http://nemerle.org/~malekith/ ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

[Mono-list] Re: Nemerle 0.3.0 released

2005-04-29 Thread Michal Moskal
On 4/29/05, Michal Moskal <[EMAIL PROTECTED]> wrote: > Hip! Hip! Nemerle 0.3.0 is out there in the wild. [...] > New features in this release include (from the NEWS file). This list can > be also found nicely htmlized in a blog post: > > http://nemerle.org/blog/archive/20

[Mono-list] Nemerle 0.3.0 released

2005-04-29 Thread Michal Moskal
mutable definition to null causes ICE * #418: Literal fields should be available in match patterns * #420: Nested types are not visible in derived class * #421: Add implicit conversion from 0 to any enum * #424: merge the literals branch * #431: Change 'matches'

[Mono-list] Nemerle 0.3.1 released

2005-05-02 Thread Michal Moskal
directly (#436), that is: foreach (op in ops) { | Op.A => ... | Op.B => ... } will now work as: foreach (op in ops) { match (op) { | Op.A => ... | Op.B => ... } } -- Michal Moskal, http://nemerle.org/~malekith/ ___ Mono-l

[Mono-list] Nemerle 0.3.2 released

2005-06-01 Thread Michal Moskal
en there is also common interface * #467: get rid of TExpr.TailCall * #469: DecisionBuilder crashes on counterexample building * #470: inference for default parameters * #471: type inference does not work for enforcements * #472: preprocessor directive handling broken * #473:

[Mono-list] problems running debugger on amd64

2005-06-01 Thread Michal Moskal
0x4940. 0x4940 int3 (mdb) Am I missing something, or this is some sort of a bug? -- Michal Moskal, http://nemerle.org/~malekith/ ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] problems running debugger on amd64

2005-06-02 Thread Michal Moskal
! AFAIR in "Interpreter.cs" > there is a reference to "Mono.Debugger.ThreadManager.TargetOutputEvent" > but "Mono.Debugger.ThreadManager" does not define such beast. I did a fresh svn checkout on Jun 1 and it compiled fine. > Having a >>working<

Re: [Mono-list] Accessing Mono SVN via http

2005-06-09 Thread Michal Moskal
rent proxy that messes things up, but does not block any ports. -- Michal Moskal, http://nemerle.org/~malekith/ ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] Accessing Mono SVN via http

2005-06-09 Thread Michal Moskal
Bad Request ( > http://svn.myrealbox.com) This messages comes from the proxy, not from svn.myrealbox. So it won't work until Aleksandar's proxy is configured correctly. -- Michal Moskal, http://nemerle.org/~malekith/ ___

Re: [Mono-list] A compiler bug?

2005-06-19 Thread Michal Moskal
on > of C# specification. Note that any object can overload unary + operator. I guess it applies to bool type, not string, it's: (+ cad2.Equals (cad3) + "," ... because unary operators have very high priority. And according to C# spec (14.6.1 Unary plus operator) there is no un

Re: [Mono-list] Wrapper for mono apps

2005-07-14 Thread Michal Moskal
d by all > programs shipped with mono (mcs, cilc, gacutil, etc.), e.g.: > > #!/bin/sh > exec /usr/bin/mono /usr/lib/mono/1.0/mcs.exe "$@" The guide doesn't mention "exec", which I guess could be fixed. The lost of one PID isn't that big,

Re: [Mono-list] Mono bug?

2005-09-04 Thread Michal Moskal
; It shouldn't, but then again... > > > Program received signal SIGPWR, Power fail/restart. > > What happened here? SIGPWR normally gets thrown if there is a power > problem. SIGPWR is used by pthread implementation. You can ignore it in gdb with: handle SIGPWR nostop handle SIGXCPU

[Mono-list] Re: Nemerle 0.9.0 is out

2005-09-14 Thread Michal Moskal
On 9/14/05, Michal Moskal <[EMAIL PROTECTED]> wrote: > Nemerle 0.9.0 has just been released. You can find details in the blog > post: > http://nemerle.org/blog/archive/2005/Sep-14.html We would like to thank mono folks and Martin Baulig and Zoltan Varga in particular. Without you

[Mono-list] Nemerle 0.9.0 is out

2005-09-19 Thread Michal Moskal
emerle.org/Downloads -- Michal Moskal, http://nemerle.org/~malekith/ ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

[Mono-list] Nemerle 0.9.1 released

2005-11-04 Thread Michal Moskal
s way. -- Michal Moskal, http://nemerle.org/~malekith/ ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

[Mono-list] Re: [Mono-dev] change console color in Unix

2005-12-09 Thread Michal Moskal
On 12/7/05, Anton Andreev <[EMAIL PROTECTED]> wrote: > Do you know how can I change console color under Linux using Mono? Using > Mono.Unix? You can use System.Console 2.0 API (this requires you to ./configure --with-preview and use gmcs instead of mcs for compilation). -- M

Re: [Mono-list] Profiling web app to find where memory is going

2006-01-05 Thread Michal Moskal
is supposed to be faster though) It does give the > right type of output. You can try to use this one: http://nemerle.org/svn/nemerle/trunk/misc/profiler/ (btw, Miguel, could you please update the link at http://www.mono-project.com/Performance_Tips#Other_Mono_profilers as it leads t

Re: [Mono-list] Profiling web app to find where memory is going

2006-01-06 Thread Michal Moskal
On 1/6/06, Joshua Tauberer <[EMAIL PROTECTED]> wrote: > Michal Moskal wrote: > > You can try to use this one: > > http://nemerle.org/svn/nemerle/trunk/misc/profiler/ > > Thanks. I'm adapting it to get more information out of it, and I think > I have to make i

Re: [Mono-list] Application performance question

2006-01-13 Thread Michal Moskal
tion that is not as optimized as the Hashtable. -- Michal Moskal, http://nemerle.org/~malekith/ foo.cs Description: Binary data ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

[Mono-list] Nemerle 0.9.2 released

2006-01-23 Thread Michal Moskal
It is my pleasure to announce 0.9.2 release of Nemerle, a high level, statically typed language for the .NET platform. This version includes among other things support for generators (yield), possibility of extending pattern matching with user-defined construct, list comprehensions and ranges. We o

Re: [Mono-list] mono 1.1.13 and nemerle

2006-01-31 Thread Michal Moskal
t; ** (/usr/bin/ncc.exe:11943): WARNING **: The following assembly referenced > from /usr/bin/ncc.exe could not be loaded: > Assembly: Nemerle(assemblyref_index=2) > Version:0.9.2.0 > Public Key: e080a9c724e2bfcd Are you sure the Nemerle assemblies are in the GAC

Re: [Mono-list] Problem compiling

2006-02-04 Thread Michal Moskal
t seems to work. -- Michal Moskal, http://nemerle.org/~malekith/ ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

[Mono-list] nemerle 0.9.3 released

2006-05-16 Thread Michal Moskal
It is our pleasure to announce 0.9.3 release of Nemerle, a high level, statically typed language for the .NET platform. This version includes among other things support for extension methods, nullable types and improved support for building with MS Build. We have also fixed a metric truckload of