Tagged Questions
2
votes
1answer
96 views
Is there a command line interpreter for Free Pascal?
E.g., one I could use by adding a shebang to my Pascal files:
#!/usr/bin/env fpi
2
votes
3answers
364 views
GUI Only By Using FPC
I want to know how I can develop GUI applications(32 Bits) without using Delphi language(Object Pascsl), only by using FPC with Lazarus installed(Pascal). Thanks.
1
vote
0answers
63 views
Notepad++ + fpc compiler
How to combine Free Pascal compiler and NP++ (or maybe other editor, Vim, Geany, ...)? i.e. I want something like IDE: compiling, running from NP++, list of errors\warnings. I tried ...
1
vote
2answers
116 views
Is $apptype a Best Pratice Comment?
I just started using FPC to pratice more my old knowleadge of Pascal, but now for Linux, then I started seeing much this comment after the 'program' declaration:
{$apptype console}
But is this a ...
0
votes
1answer
44 views
How To Detect Which OS Is Running The Program?
I'm building an application that might have some different tasks depending of the OS which is running it, so I want to know if there is any way to detect the OS and store it in a variable.
0
votes
2answers
65 views
Can Pascal units be compiled as executables?
I like my libraries to double as executables. The desired behavior is:
$ ./scriptedmain
Main: The meaning of life is: 42
$ ./test
Test: The meaning of life is: 42
How can I:
Get scriptedmain.p to ...
0
votes
2answers
111 views
Pascal isDir function
I want to make a program that lists files contained in a certain directory. I want to list the file and only the file, not the folders that is on this directory, too. How can I do this in Pascal? If ...