Difference between revisions of "Holywar"

From Lazarus wiki
Jump to navigationJump to search
m (→‎Why do we use Pascal: Remove dead page link)
 
(One intermediate revision by the same user not shown)
Line 14: Line 14:
 
Lots of Pascal programmers choose the language because of:
 
Lots of Pascal programmers choose the language because of:
 
* modern Object Pascal is simply one of the most productive languages and it can be used for almost everything.
 
* modern Object Pascal is simply one of the most productive languages and it can be used for almost everything.
** [[FPC Applications/Projects Gallery]]
 
 
** [[Projects using Lazarus]]
 
** [[Projects using Lazarus]]
 
** [https://delphi.wikia.com/wiki/Good_Quality_Applications_Built_With_Delphi Applications Build With Delphi]
 
** [https://delphi.wikia.com/wiki/Good_Quality_Applications_Built_With_Delphi Applications Build With Delphi]
Line 35: Line 34:
  
 
A: Has it any advantage to define no intermediate type?
 
A: Has it any advantage to define no intermediate type?
<syntaxhighlight>
+
<syntaxhighlight lang=pascal>
 
type
 
type
 
   TFloatRetFunc = function : single;
 
   TFloatRetFunc = function : single;

Latest revision as of 01:43, 27 July 2020

English (en) русский (ru)

The page is dedicated to list all possible pros (mostly) and cons of Pascal language (all kinds of pascal included).

Pascal has something of a stigma as an "educational, and therefore weak" language, but it has nothing in common with a real life.

If you're Pascal developer being involved into a next flame about Pascal language, you're encouraged to use the page.

Why do we use Pascal

(if you don't use (Object) Pascal, please don't edit the section)

Often programmers are free to choose their tools, especially then coding as a hobby (rather than for their living). Lots of Pascal programmers choose the language because of:

  • modern Object Pascal is simply one of the most productive languages and it can be used for almost everything.
  • well structured modular language
  • safe and clean syntax, great for team work
  • fast compile-time
  • Object Pascal have really nice oop/interfaces implementation

Q&A

Q: Why there're so many limitations on what expressions i can use in "for" and "while" operators?

A: to force you to create maintainable and readable code


Q: Pascal doesn't allow to specify complex types without intermediate types. I.e. "an array of pointers to a function that accepts 2 ints and returns a pointer to function that returns a float" <c> float (*(*a[10])(int, int))() </c>

A: Has it any advantage to define no intermediate type?

type
  TFloatRetFunc = function : single;
  TSomeArray = array [0..9] of function (a, b: Integer): TFloatRetFunc;

Advantages over C/C++

  • no preprocessor (better code reading and understanding);
  • no hardly readable and poorly debugged STL;
  • compiler built-in string-type (string ShortString, AnsiString, WideString). As well as still available to use PChar;


see also