PascalABC.NET
Paradigm | Multi-paradigm: procedural, functional, object-oriented, generic |
---|---|
Designed by | PascalABC.NET Compiler Team |
First appeared | 2007 |
Stable release | 3.8.3.3255
/ 4 April 2023 |
Typing discipline | Static, partially inferred |
Implementation language | PascalABC.NET |
OS | Cross-platform |
License | LGPLv3 |
Filename extensions | .pas |
Website | pascalabc |
Influenced by | |
Delphi, Pascal, Oxygene, C#, Python, Kotlin, Haskell |
PascalABC.NET is a high-level general-purpose programming language supporting multiple paradigms. PascalABC.NET is based on Delphi's Object Pascal, but also has influences from C#, Python, Kotlin and Haskell. It is distributed both as a command-line tool for Windows (.NET Framework), Linux and MacOS (Mono), and with an integrated development environment for Windows and Linux, including interactive debugger, IntelliSense system, form designer, code templates and code auto-formatting.
PascalABC.NET is implemented for the .NET Framework platform, so that it is compatible with all .NET libraries and utilizes all the features of Common Language Runtime, such as garbage collection, exception handling, and generics. Some language constructions, e.g. tuples, sequences, and lambdas, are based on regular .NET types. PascalABC.NET is ideologically close to Oxygene, but, unlike it, provides high compatibility with Delphi.
History of PascalABC.NET
PascalABC.NET was developed by a group of enthusiasts at the Institute of Mathematics, Mechanics, and Computer Science in Rostov-on-Don, Russia.[1] In 2003, a predecessor of the modern PascalABC.NET, called Pascal ABC, was implemented by associate professor Stanislav Mikhalkovich to be used for teaching schoolchildren instead of Turbo Pascal, which became outdated and incompatible with modern operating systems but was still used for educational purposes. Pascal ABC was implemented as an interpreted programming language, that led to a significant lack of performance. Four years after that it was completely rewritten by students Ivan Bondarev, Alexander Tkachuk, and Sergey Ivanov as a compiled programming language for the .NET platform. In 2009, PascalABC.NET started to be actively used for teaching high school students. By 2015, the number of users of the language had increased significantly. It began to be actively used throughout Russia in schools and at programming contests, surpassing FreePascal. Since then, the PascalABC.NET developers have set themselves the goal of actively incorporating modern features into the language. In the same year, PascalABC.NET became an open source project distributed under the LGPLv3 license.[2][3]
In 2017[4] and 2022,[5] independent audit of PascalABC.NET public repository was conducted. Based on the results of the static check, potentially dangerous code fragments were listed that require additional analysis by developers. It was also noted that the overall quality of the code could be improved. To do this, code duplication and redundant checks should be eliminated, and refactoring should be performed more carefully.
Use in school and higher education
Designed for education, PascalABC.NET remains the most common programming language in Russian schools and one of the recommended languages for passing the Unified State Exam on informatics.[6][7][8] In the Southern Federal University, it is used as the first language for teaching students majoring in computer science, and for teaching children in one of the largest computer schools in Russia.[9] PascalABC.NET is widely used as a basic programming language in pedagogical universities for the training of computer science teachers.[10][11][12][13] It also serves as a tool for scientific computing.[14][15] PascalABC.NET is also built into a number of validation systems used for programming competitions.[16][17]
In 2020, during anti-COVID lockdowns and home schooling period, PascalABC.NET website was ranked 3rd in Yandex traffic rating in the "Programming" category, and the number of downloads of the installation kit exceeded 10000 a day.[18]
Though the core of the PascalABC.NET community is located in Russia, the language is also known in other countries such as Belarus,[19] Romania,[20] Indonesia,[21] Algeria.[22]
Language syntax
Differences between Delphi and PascalABC.NET
New features
• loop
statement
loop 10 do Write('*');
• for
loop with a step
for var i:=1 to 20 step 2 do Print(i);
• foreach
loop with an index
foreach var c in Arr('a'..'z') index i doif i mod 2 = 0 thenPrint(c);
• a..b
ranges
(1..10).Printlines
• short function definition syntax
function Sum(a,b: real) := a + b;
• method implementation can be placed inside a class definition
type Point = classx,y: real; procedure Output; begin Print(x,y); end;end;
• sequence of T
type as an abstraction of arrays, lists and sets
var seq: sequence of integer := Arr(1..10);seq.Println; seq := Lst(11..100); seq.Println;
seq := HSet(1..20); seq.Println;
var a := ArrGen(10,i -> i*i);
• auto classes - classes with an automatically generated constructor
type Point = auto classx,y: real;end;
var p := new Point(2,5);
• one-dimentional and multi-dimentional array slices
var m: array [,] of integer := MatrGen(3,4, (i,j) -> i+j+1);Println(m); // 1,2,3,4],[2,3,4,5],[3,4,5,6
Println(m[:2,1:3]); // 2,3],[3,4
Some other features such as inline variable declarations, type inference, and for
statement with a variable declaration are standard in the current version of Delphi. However, PascalABC.NET pioneered these features in 2007,[23] while in Delphi they were implemented in 2018.[24][25]
Changed features
- strings in
case
statements - sets based on arbitrary type:
set of string
- constructors can be invoked with
new T(...)
syntax - type extension methods instead of class helpers
- modules can be defined in a simplified form (without
interface
andimplementation
sections)
Not implemented features
- records with variant parts
- open arrays
- nested class definitions
- inline assembly code
Functional style features
In PascalABC.NET, functions are first-class objects. They can be assigned to variables, passed as parameters, and returned from other functions. Functional type is set in the form T -> Res
.[26] An anonymous function can be assigned to the variable of this type:
## // denotes that the main program will be written without enclosing begin-end var f: real -> real := x -> x*x;
Here is an example of superposition of two functions:
## function Super<T,T1,T2>(f: T1 -> T2; g: T -> T1): T -> T2 := x -> f(g(x)); var f: real -> real := x -> x*x; var fg := Super(f,Sin); var gf := Super(Sin,f); Print(fg(2)); Print(gf(2));
Superposition operation is defined in the standard library:
## var f: real -> real := x -> x*x; Print((f*Cos)(2)); Print((Cos*f)(2));
In the book "How To Program Effectively In Delphi"[27] and in the corresponding video tutorials,[28][29] Dr. Kevin Bond, a programmer and a Computer Science teaching specialist,[30] notes that PascalABC.NET has powerful functional programming capabilities which are missing in Delphi. As an example, partial function application is demonstrated:
begin var f: integer -> integer -> integer := x -> y -> x + y; Writeln(f(2)(6)); end.
Code examples
PascalABC.NET is a multi-paradigm programming language. It allows one to use different coding styles from oldschool Pascal to functional and object-oriented programming. The same task can be solved in different styles as follows:[31]
Usual PascalABC.NET style
begin var (a,b) := ReadInteger2; // read input into tuple of two variables var sum := 0; // type auto-inference for var i:=a to b do sum += i*i; Print($'Sum = {sum}') // string interpolation end.
Procedural style
function SumSquares(a,b: integer): integer; begin Result := 0; for var i := a to b do Result += i * i end; begin var (a,b) := ReadInteger2; Print($'Sum = {SumSquares(a,b)}') end.
Functional style
This solution uses .NET extension methods for sequences and PascalABC.NET-specific range (a..b)
.
begin var (a,b) := ReadInteger2; (a..b).Sum(x -> x*x).Print // method chaining with lambda expressions end.
Object-oriented style
This solution demonstrates PascalABC.NET-specific short function definition style.
type Algorithms = class static function SumSquares(a,b: integer) := (a..b).Sum(x -> x*x); static function SumCubes(a,b: integer) := (a..b).Sum(x -> x*x*x); end; begin var (a,b) := ReadInteger2; Println($'Squares sum = {Algorithms.SumSquares(a,b)}'); Println($'Cubes sum = {Algorithms.SumCubes(a,b)}') end.
Close to regular C# style
It is possible to write programs without usage of PascalABC.NET standard library. All standard .NET Framework classes and methods can be used directly.
uses System; // using .NET System namespace begin var arr := Console.ReadLine.Split( new char[](' '), StringSplitOptions.RemoveEmptyEntries ); var (a,b) := (integer.Parse(arr[0]),integer.Parse(arr[1])); var sum := 0; for var i:=a to b do sum += i*i; Console.WriteLine($'Sum = {sum}') end.
Criticism
Though PascalABC.NET is actively used for teacher training,[7][10][32][33] some members of the teaching community ignore difference between historically used Turbo Pascal and PascalABC.NET, criticizing some unspecified "Pascal" language for being far from modern programming, too wordy and not simple enough to be used as the first programming language.[34][35] They consider Python to be the best starting point, as it is more concise and practically applicable. Their opponents, including PascalABC.NET developers themselves, argue that it is incorrect to put an equal sign between the classic Pascal and PascalABC.NET, as the latter contains lots of modern multi-paradigm features, including the ones from Python.[8][36][37] PascalABC.NET allows students to write as concise and expressive programs as Python,[38] and acts as a "bridge to production programming" by applying a static typing concept.[8] PascalABC.NET is also a compilable language, which makes it easier to learn programming, because all semantic errors are caught at compile time rather than occur unpredictably at runtime.[8][39]
References
- ↑ Osipov, Alexander V. (2019) (in ru-RU). PascalABC.NET: Vvedenie v sovremennoe programmirovanie [PascalABC.NET: Introduction to Modern Programming]. Rostov-on-Don, Russia. pp. 28.
- ↑ "Twisted Pair Podcast, #389" (in ru-RU). 2021-03-30. https://tpair.org/podcast/tp-389/.
- ↑ Bondarev, Ivan V.; Belyakova, Yulia V.; Mikhalkovich, Stanislav S. (2013-04-24). "PascalABC.NET programming system: 10 years of development". https://pascalabc.net/downloads/Presentations/10letPABC.pdf.
- ↑ "Analysis of PascalABC.NET using SonarQube plugins: SonarC# and PVS-Studio". 2017-03-29. https://pvs-studio.com/en/blog/posts/csharp/0492/.
- ↑ "Re-checking PascalABC.NET". 2022-02-11. https://medium.com/pvs-studio/re-checking-pascalabc-net-f8bfc94aba3c.
- ↑ "Metodicheskie rekomendacii po podgotovke i provedeniyu edinogo gosudarstvennogo ekzamena po informatike i IKT v komp'yuternoj forme v gorode Moskve v 2021 godu [Guidelines for the preparation and conduct of the unified state exam in computer science and ICT in the city of Moscow in 2021"] (in ru-RU). Departament obrazovaniya i nauki goroda Moskvy [Department of Education and Science of Moscow]. p. 110. https://rcoi.mcko.ru/resources/upload/RichFilemanager/documents/2020-2021/org_metod/11/mr_kege_inf_2021.pdf.
- ↑ 7.0 7.1 Polyakov, Konstantin. "Doklady na konferenciyah i seminarah [Reports at conferences and seminars"] (in ru-RU). https://kpolyakov.spb.ru/school/doklad.htm.
- ↑ 8.0 8.1 8.2 8.3 Bogdanov, Alexey (2022-10-04). "PascalABC.Net or Python/ C#/C++" (in ru-RU). https://www.youtube.com/watch?v=RulhCYnbRAA.
- ↑ Popova, Ekaterina (2022-09-06). "Kak v Rostove gumanitarii uspeshno obuchayutsya IT-special'nostyam [How humanitarians successfully study IT specialties in Rostov"] (in ru-RU). Komsomolskaya Pravda. https://www.rostov.kp.ru/daily/27441/4643617/.
- ↑ 10.0 10.1 Dzhenzher, V.O.; Denisova, L.V. (2019). "Mathematical animation in computer simulation at school" (in ru-RU). Informatics in School (6): 51–54. doi:10.32517/2221-1993-2019-18-6-51-54. https://www.sciencegate.app/document/10.32517/2221-1993-2019-18-6-51-54.
- ↑ Dzhenzher, V.O.; Denisova, L.V. (2021). "Implementation of the Hamming code on PascalABC.NET while studying the theoretical foundations of informatics" (in ru-RU). Informatics in School 1 (9): 29–38. doi:10.32517/2221-1993-2021-20-9-27-36.
- ↑ Dzhenzher, V.O.; Denisova, L.V. (2020). "Scientific graphics in PascalABC.NET: plotting function graphs in a rectangular cartesian coordinate system" (in ru-RU). Informatics in School (1): 31–39. doi:10.32517/2221-1993-2020-19-1-31-39. https://www.sciencegate.app/document/10.32517/2221-1993-2020-19-1-31-39.
- ↑ Kulabukhov, S.Yu. (2021). "Mathematical modeling in informatiсs lessons using numerical solution of differential equations" (in ru-RU). Informatics in School (2): 14–21. doi:10.32517/2221-1993-2021-20-2-14-21. https://school.infojournal.ru/jour/article/view/528/528.
- ↑ Khazieva, R.T.; Ivanov, M.D. (2020). "Selection of optimum device parameters for permanent magnetic field generation" (in ru-RU). Power Engineering: Research, Equipment, Technology 22 (6): 176–187. doi:10.30724/1998-9903-2020-22-6-176-187. https://www.energyret.ru/jour/article/view/1625/696.
- ↑ Lukyanov, O.E.; Zolotov, D.V. (2021). "Methodological support for the training of UAV designers and operators" (in ru-RU). VESTNIK of Samara University. Aerospace and Mechanical Engineering 20 (1): 14–28. doi:10.18287/2541-7533-2021-20-1-14-28. https://journals.ssau.ru/vestnik/article/view/8633/pdf.
- ↑ "ACMP Olympiad System". https://acmp.ru/article.asp?id_text=120.
- ↑ "Yandex Contest Compilers List". https://contest.yandex.ru/compilers/.
- ↑ Kubysheva, Olga (2020-04-17). "PascalABC.NET: Sajt sistemy programmirovaniya, razrabatyvaemoj na mekhmate YUFU, podnyalsya v rejtinge YAndeksa na tret'e mesto [PascalABC.NET: Site of programming system developed at SFedU MMCS faculty climbed up to the third place in Yandex ranking"] (in ru-RU). https://www.rostov.kp.ru/online/news/3839814/.
- ↑ Kutysh, Aleksandr Z. (2018). "Razrabotka soderzhaniya vzaimosvyazannogo obucheniya budushchih uchitelej informatiki tekhnologiyam programmirovaniya [Development of interconnected training content for future computer science teachers in programming"] (in ru-RU). Pedagogical Science and Education (3): 44–52. https://www.adu.by/images/2019/05/PedNauka_3(24)_2018.pdf.
- ↑ "Practică în Pascal". 2020-01-21. https://www.youtube.com/playlist?list=PLP11T_LhFxPlQoxbZ1ZTlrv6AXDQjJJqB.
- ↑ "Mengenal PascalABC.NET". https://www.pascal-id.org/news/357/mengenal-pascalabc.net.
- ↑ "PASCAL AND DELPHI TUTORIAL". 2022-06-12. https://www.youtube.com/playlist?list=PLmFVPmv0ntGNq-mu4vCT68I5ekJQj-Ocn.
- ↑ "PascalABC.NET. What's New" (in ru-RU). https://pascalabc.net/chto-novogo.
- ↑ Embarcadero Technologies (2018-11-21). "See What's New in RAD Studio 10.3". https://www.youtube.com/watch?v=RreUFdxaR20&t=44s.
- ↑ "Help for RAD Studio 10.3 Rio. What's New". https://docwiki.embarcadero.com/RADStudio/Rio/en/What%27s_New.
- ↑ Osipov, Alexander V. (2019) (in ru-RU). PascalABC.NET: Vvedenie v sovremennoe programmirovanie [PascalABC.NET: Introduction to Modern Programming]. Rostov-on-Don, Russia. pp. 116–120.
- ↑ Kevin R. Bond (2021). "Chapter 44. Anonymous methods". How to Program Effectively in Delphi for AS/A Level Computer Science. Educational Computing Services Ltd. ISBN 9780992753603.
- ↑ Kevin Bond. "How to Program Effectively in Delphi. Lesson 44. Part 1". https://www.youtube.com/watch?v=RBlg-ItyyTA&t=377s.
- ↑ "Delphi Boot Camp 2022 - Delphi and functional programming using anonymous methods". https://www.youtube.com/watch?v=OmregYuqLU8&t=1640s.
- ↑ "Brief biography Dr Kevin R Bond". https://www.educational-computing.com/DelphiBook/KRBsBriefBiography.pdf.
- ↑ "PascalABC.NET programming styles". https://pascalabcnet.github.io/mydoc_progr_styles.html.
- ↑ Dzhenzher, V.O.; Denisova, L.V. (2022). "Dynamic arrays and lists in PascalABC.NET" (in ru-RU). Informatics in School (1): 67–80. doi:10.32517/2221-1993-2022-21-1-67-80. https://school.infojournal.ru/jour/article/view/614/611.
- ↑ "Nauchno-metodicheskaya konferenciya «Ispol'zovanie sistemy programmirovaniya PascalABC.NET v obuchenii programmirovaniyu» (29-30 marta 2023 g.) [Scientific and methodical conference "Using PascalABC.NET programming system in teaching programming" (March 29-30, 2023)"] (in ru-RU). https://mmcs.sfedu.ru/registration/28-PABCConf2023.
- ↑ Panova, I.V.; Kolivnyk, A.A. (2020). "METHODOLOGICAL ASPECTS OF TEACHING PYTHON PROGRAMMING IN THE SCHOOL INFORMATICS COURSE" (in ru-RU). Informatics in School (6): 47–50. doi:10.32517/2221-1993-2020-19-6-47-50.
- ↑ "What's wrong with modern computer science teaching" (in ru-RU). 2021-05-28. https://habr.com/ru/companies/skillfactory/articles/559010/.
- ↑ "The First Programming Language Dispute: The Final Solution / Vitaly Bragilevsky (JetBrains)". 2020-04-14. https://www.youtube.com/watch?v=OtcKHgkPiyk&t=2318s.
- ↑ Polyakov, Konstantin (2021-08-24). "New features in PascalABC.NET" (in ru-RU). https://kpolyakov.spb.ru/download/pas2021.ppt.
- ↑ Mikhalkovich, Stanislav (2021-11-22). "Comparing Python and PascalABC.NET". https://www.youtube.com/watch?v=ZcWP82JBqZI.
- ↑ Osipov, Alexander V. (2020) (in ru-RU). PascalABC.NET: vybor shkol'nika. CHast' 1. [PascalABC.NET: Schoolchildren's Choice. Part 1] (2nd ed.). Southern Federal University. pp. 16–19.
External links
Original source: https://en.wikipedia.org/wiki/PascalABC.NET.
Read more |