Tagged Questions

Oxygene is a high level, general-purpose, managed, garbage-collected and object-oriented pascal-like programming language. Oxygene is compliant to the Microsoft .NET and the Mono framework, Java as well as Google Androids Dalvik runtime.

learn more… | top users | synonyms

8
votes
4answers
292 views

Hidden Features of Delphi prism

Continuing with the series "Hidden features" I think it's time to Delphi Prism. I believe that's a great way to encourage the development of delphi prism, is that we all share what we discovered in ...
4
votes
1answer
573 views

Delphi Syntax for TextMate

I exchanged emails with Marc-André Cournoyer of RefactorMyCode.com about supporting Delphi on his site. Since his site uses Ruby's UltraViolet to do syntax highlighting, and it uses TextMate ...
2
votes
1answer
56 views

Roll populating a Dictionary into a LINQ of For expression

I have a data object Data = class public s: string; i: Integer; end; with many of them in a list (or some collection): var ol : List<Data> := new List<Data>; ...
1
vote
1answer
110 views

Can I use the Oxygene free command line compiler to develop open source code?

I just downloaded the Oxygene free command line compiler, and tried to read the EULA, which I did not quite understand. While there was a section about compiled programs and redistributables, I did ...
1
vote
6answers
1k views

Lambda Expressions in Delphi Prism/Oxygene

I have been experimenting with Lambda expressions in Oxygene. Very simple recursive lambda expression to calculate a fibonacci number : var fib : Func<int32, int32>; fib := n -> iif(n > ...