Earlier quoted context omitted.
It's much harder to get enough of a .NET runtime together for a new platform than it is to lean on a platform compiler and binary toolchain which must already exist. It's all very well saying "just download the installer," but that won't get my nemerle code running on my phone.
What phone? Chances are Mono run there...
Nemerle 1.0
21–24 of 24 posts
Re: Nemerle 1.0
#22Earlier quoted context omitted.
There are different "macro stages" to allow macro application on both typed and untyped source.
so if macros can operate on typed source and/or on the typed ast tree, do they (the macros) have a type system that guarantees that they will preserve correct typing? or are types still checked agan (globally?) after applying the macro? what i'm really asking is, is there anything "smart" about how the macro works with the type system?
For example, "foreach" macro use compiler API to infer type of collection. This macro generate specialized code for different collection kind (array/list/IEnumerable).
Re: Nemerle 1.0
#23Earlier quoted context omitted.
There are different "macro stages" to allow macro application on both typed and untyped source.
so if macros can operate on typed source and/or on the typed ast tree, do they (the macros) have a type system that guarantees that they will preserve correct typing? or are types still checked agan (globally?) after applying the macro? what i'm really asking is, is there anything "smart" about how the macro works with the type system?
Re: Nemerle 1.0
#24It looks a lot like python + javascript.