Category:PascalABC.NET

Revision as of 12:21, 30 August 2022 by Nigel Galloway (talk | contribs) (Adding new language PascalABC.NET)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
This page is a stub. It needs more information! You can help Rosetta Code by filling it in!
Language
PascalABC.NET
This programming language may be used to instruct a computer to perform a task.
See Also:


Listed below are all of the tasks on Rosetta Code which have been solved using PascalABC.NET.

PascalABC.NET is the new generation Pascal programming language that combines simplicity of classic Pascal, a great number of modern extensions and broad capabilities of Microsoft .NET Framework.

PascalABC.NET will compile much of the Pascal and Delphi on this site, but let me hope that entries an RosettaCode will use the modern functional extensions and not look like something from 1970.

True I could write fN in the following example in Delph, but I would risk a repetitive wrist injury. For those wishing to save their wrist for things more important than writing verbose code:

begin
  var fN: integer->integer->integer := x -> y -> x + y;
  var n := fN(2);
  writeln(n(11));
  writeln(n(21));
end.