I do some programming in freepascal, so i'll be very disappointed if for any reason it doesn't run on the server

So if anyone is avaiable for a little test, could try to run it

Here's the commands:
# apt-get install fp-compiler
( this should install freepascal. Take note of other installed packages to remove everythin after if you want. Must run as root)
$ echo "program hello;begin writeln('hello');end." > hello.pas
( create a small pascal program )
$ fpc hello.pas
(compiles it)
$ ./hello
(runs it, it should display "hello" )
then you can remove it with:
# apt-get remove --purge fp-compiler