Welcome to SpellCoder Sign in | Join | Help

Thursday, October 30, 2008 - Posts

So you have your OSLO SDK installed and your Intellipad running smoothing on your screen.  Well, let’s get busy. Let’s remember a simple factoid: module is the basic organization structure in M language. The following code is the smallest unit Read More
Finally there is a way on how to use tuple as it ought to be. In C# 4.0, you can do the following dynamic GetTuple() { return new { FirstName : “John”, LastName : “Adams” }; } dynamic myTuple = GetTuple(); Console.WriteLine (myTuple.FirstName); Read More