Top "Pascal" questions

Pascal is an imperative language from the Wirthian family created in 1969.

Does C++ have "with" keyword like Pascal?

with keyword in Pascal can be use to quick access the field of a record. Anybody knows if C++ has …

c++ pascal with-statement
Array begin from 0 or 1 in Delphi 5.0 Pascal?

I want to do an ArrayList in Delphi 5.0. So I found a solution doing this code: var arr: array of …

arrays delphi pascal
Counting the number of decimal places in pascal

I just started studying pascal and I have to do a pascal program as homework. I made it but I …

decimal pascal real-datatype
Are there any static code analysis tools for Delphi/Pascal?

Are there any static code analysis tools for Delphi/Pascal? I have seen plenty of options for C++ and .NET, …

delphi static-analysis pascal
Delphi - find character a given position/index

I have searched all over for this. In Delphi/Lazarus, given a position, I want to find the character at …

delphi pascal lazarus
Cast Enumeration Value to Integer in Delphi

Is it possible to cast/convert an Enumeration Value to Integer in Delphi? If yes, then how?

integer pascal enumeration delphi
How to check if string contains string in Pascal

I tried the following code which supposed to check if a string contains spaces but I get an error. How …

pascal
Pascal IDE for Mac OS X

i'm a beginner Pascal programmer and I recently migrated to the Mac OS X. Today I spent many hours searching …

macos ide pascal
How to assign a multiline string value without quoting each line?

Is there a way to assign a multiline string value in Delphi without having to quote each line? Edit (the …

delphi pascal
Returning a value in Pascal

For a function to return a value in Pascal the assignment FunctionName := SomeVal; is used. I assume it doesn't stop …

pascal freepascal