Tagged Questions

Nemerle is a general-purpose, multi-paradigm programming language for the .Net platform. It is as easy to learn and use as C# or VB.NET but Nemerle is by far more powerful. One may start using it as an advanced C# and then, as learning goes on, employ a range of cool features enabling metaprogramming and functional programming. The metaprogramming is based on macros bearing some similarity to Lisp.

learn more… | top users | synonyms

63
votes
1answer
2k views

How to add property to property map without class explorer?

I've got a new question after answer on this question Pass parameter from page to ActiveX How to add property to property map without class explorer? Need to add the property for object and class ...
19
votes
8answers
2k views

F# vs C# vs Nemerle

Got new project in my TODO and can't chose F# or Nemerle. I'm currently learning F# and have some projects on Nemerle. I like F# way , I like indent by default (also I want indent by default for ...
11
votes
10answers
602 views

When is a new language the right tool for the job?

For a long time I've been trying different languages to find the feature-set I want and I've not been able to find it. I have languages that fit decently for various projects of mine, but I've come ...
10
votes
3answers
626 views

Using Nemerle in asp.net App_Code directory

I want to use Nemerle in an ASP.NET application. Specifically, putting .n files into App_Code. I added this to my web.config system.codedom/compilers section: <compiler language="n;Nemerle" ...
6
votes
2answers
1k views

Getting types in mscorlib 2.0.5.0 (aka Silverlight mscorlib) via reflection on?

I am trying to add Silverlight support to my favorite programming langauge Nemerle. Nemerle , on compilation procedure, loads all types via reflection mainly in 2 steps 1-) Uses Assembly.LoadFrom ...
5
votes
2answers
710 views

Comparison Of Nemerle and F# For Functional On .Net

Community Wiki Question: Pursuant to this question: What are the benefits of using Scala in .Net? another question comes to mind. Can anyone lay out the comparative advantages (and disadvantages) of ...
4
votes
1answer
155 views

Nemerle actors/coroutines & Mono Continuations

I found this article: http://www.mono-project.com/Continuations So I have a few questions about it. Are there any implementations of erlang-style or (at least) scala-style actors for Nemerle based on ...
4
votes
2answers
601 views

What are the differences between Boo vs Nemerle?

It looks like both of these languages are dubbed as "what C# should have been", with hygenic macros, REPL, Compiler as a Serivce (CaaS), static + duck typing (way before C# had it). Are there any ...
3
votes
6answers
240 views

Quotation real usages

I faced with the 'quotation' term and I'm trying to figure out some real-life examples of usage of it. Ability of having AST for each code expression sounds awesome, but how to use it in real life? ...
3
votes
4answers
198 views

How do add 1 to a byte

I've tried module Program { Main() : void { mutable x : byte = 0B; mutable y : byte = 0B; x++; //y = x + 1; //y = x + 1B; //def one:byte=1;// x = x + one; } } No ...
3
votes
2answers
279 views

F# match with ->

I want to make something like it (Nemerle syntax) def something = match(STT) | 1 with st= "Summ" | 2 with st= "AVG" => $"$st : $(summbycol(counter,STT))" on F# so is it real with ...
3
votes
1answer
721 views

Reading byte array Textbox -> byte[]

I've got Textbox with a string like 89 3d 2c c0 7f 00 How to store it to Byte[] (byte array) variable ? Now I can read only one dec value :( ...
3
votes
1answer
486 views

How to hide console after creating form in console application

I want to hide my console after creating a from in my console application. And then show it again after closing form :) or somewhere when I want ... Console.Hide??? Application.Run(nForm()); ...
3
votes
3answers
342 views

How to install Nemerle on Mono

I can't find the solution How to install Nemerle on Mono I've got Nemerle Studio , But I want to try mono with it. Maybe I will make something for Linux later, now I want to try it on windows.
3
votes
3answers
348 views

What's the use of chords?

Languages such as Nemerle support the idea of chords. I'd like to know what their practical use is.
2
votes
3answers
189 views

available options for 'fake' linq comprehension syntax keywordsin C#?

While there are a few cases where I'll write something using the method chains (especially if it's just one or two methods, like foo.Where(..).ToArray()), in many cases I prefer the LINQ query ...
2
votes
2answers
126 views

Building WPF/XAML applications in Nemerle

What's the process for building WPF apps in languages other than C#/VB, spefically Nemerle? Are there any command line tools available that can compile XAML and embed it into an assembly? Are there ...
2
votes
1answer
67 views

Is .NET 2.0 included in the .NET 3.5 installer?

I have a .NET 3.5 program written in Nemerle. As a project dependency I have a .NET 2.0 library. Can I be sure that when the end-user installs .NET 3.5 my program will work, or will I need to force ...
2
votes
4answers
214 views

How to debug F#/Nemerle mono application under Linux?

I recently discovered Nemerle and F#, but I can't find any way to debug my applications. MonoDevelop 2.6 lacks support of Nemerle and F#, 2.4.2 and earlier crashes because of newer gnome-sharp lib is ...
2
votes
2answers
67 views

Enumerate all types in an assembly inside a macro

How to get all types in the assembly inside a macro attribute of kind MacroTargets.Assembly in Nemerle?
2
votes
2answers
317 views

Integrating Nemerle in Visual C# 2010 Express

I would like to use Nemerle to write parts of a .NET application. Is there a plugin for Visual C# 2010 Express? The only one I found returns an error because it is thought for a different version of ...
2
votes
2answers
272 views

Infix format for Nemerle macro

Say I need some very special multiplication operator. It may be implemented in following macro: macro @<<!(op1, op2) { <[ ( $op1 * $op2 ) ]> } And I can use it like def val = 2 ...
1
vote
2answers
94 views

Nemerle Extension Property

Recently there was a discussion about adding Extension Property to Nemerle language. But the syntax is unclear. One possible syntax is providing extension methods with special names "get_", "set_" ...
1
vote
1answer
82 views

Tune cindent “switch” indentation

Nemerle is a C-like language and mostly works very well with cindent. However, its construct analogous to switch is called match: match (x) // switch (x) { // { ...
1
vote
0answers
112 views

Monotouch/Mono for Android and other .NET languages [closed]

Is it possible to use Nemerle under Mono Touch and Mono for Android? If not, what would it take to make it possible?
1
vote
1answer
165 views

Nemerle Custom Operator Problem

What would like to able to write in my code is the following. c² = a² + b² To begin with I tried creating a macro for ² first. I have tried the following. macro @² (x) syntax (x,"²") { <[ ...
1
vote
1answer
95 views

Are there any DLL files that an application written in Nemerle needs to include?

When I deploy an application written in Nemerle, are there any DLL files specific for Nemerle that needs to be installed? If there are such DLL files, which are they?
1
vote
1answer
402 views

Could not load ConfigurationSection class - type

at web.config <section name="FlowWebDataProviders" type="FlowWebProvidersSection" requirePermission="false"/> <FlowWebDataProviders peopleProviderName="sqlProvider" ...
1
vote
1answer
173 views

How to save class object to file and then encrypt it with open and closed key

How to save class object to file and then encrypt it with open and closed key. closed key must be one for all (just for safe) and open key must be different for each file. I want use this code ... ...
1
vote
2answers
197 views

Offset as hex from textbox

I'm using lpBaseAddress : IntPtr but ... I need to enter hex value :-/ like a normal offset like on VB that could be something like : offset = CLng("&H" + text) So I need to take a ...
1
vote
1answer
919 views

WriteProcessMemory

Ok... I want to make win32api WriteProcessMemory works. (*Just for learning winAPI on .Net platforms ! ^_^*) I'm using Nemerle but the syntax is similar C# and I can read C# code sure. So here is ...
1
vote
3answers
151 views

Input in Nemerle

I want to know how to take input from the console of the form : M 14 65 99 in nemerle. In C# I am doing this by : string[] input = System.Console.ReadLine().Split(' '); ch = ...
1
vote
2answers
451 views

Defining operators in Boo

I'm looking to move some of my lighter weight metaprogramming from Nemerle to Boo and I'm trying to figure out how to define custom operators. For example, I can do the following in Nemerle: macro ...
0
votes
2answers
118 views

Modern functional language with simple syntax? [closed]

I'm interested in trying to learn some modern/advanced features of functional languages. I have some basic knowledge of some simple functional concepts like closures etc. from Lua, Go and from trying ...
0
votes
1answer
143 views

Can I specify system.codedom compiler inside my web application (bin folder)?

I want to use Nemerle, but for using it : <system.codedom> <compilers> <compiler language="n;Nemerle" extension=".n" warningLevel="1" ...
0
votes
2answers
927 views

How to cancel binding ObjectDataSource?

CheckPara is my OnDataBinding procedure SqlDataSource1 is ObjectDataSource (it's only confusing name) Language is Nemerle, but if you know C# you can read it easy protected virtual CheckPara(_ : ...
0
votes
1answer
213 views

Nullable Integer ? (working with linq)

I've got exception about convert NULL to Int32. I've got a table from database with nullable tinyint [Column(Storage="_StatType", DbType="tinyint NULL")] public StatType : int { get { _StatType; } ...
0
votes
1answer
41 views

LinqToSQL _conn ? LinqToSQLConnection?

here is a code : using System; using Nemerle.Collections; using Nemerle.Text; //using Nemerle.Utility; using System.Linq; using Nemerle.Data.Linq; using NUnit.Framework; using System.Data.Linq; ...
0
votes
2answers
631 views

Application.SetCompatibleTextRenderingDefault(false);

Application.SetCompatibleTextRenderingDefault(false); Error : Before the establishment of the first object IWin32Window in the annex to call SetCompatibleTextRenderingDefault. why error ? how to ...
0
votes
0answers
92 views

DoEvents 1 to 100

for (mutable i : int = 0; i <= 100; i++) { SplashScreen.SetCurrentTitle("Loading : " + i.ToString() + "%"); Application.DoEvents(); ...
0
votes
1answer
110 views

Cached ResourceManager instance request — how to convert the code to Nemerle

C# CODE : [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Resources.ResourceManager ...
0
votes
3answers
176 views

syntax error in Regular expression to match link url

I have the following method in some nemerle code: private static getLinks(text : string) : array[string] { def linkrx = Regex(@"<a\shref=['|\"](.*?)['|\"].*?>"); def m = ...