I downloaded this http://sourceforge.net/projects/freepascal/files/Mac OS X/2.2.4/ and it gave me what I needed to run Pascal from within xcode and not the terminal any more. When I write this code
it prints this mess out on the console window
At this point I should just count my blessings and be happy I can do everything in xcode but I will ask any way
Is there a preference setting for removing all the extra memory data that gets printed so I can just see hello world and that it exited out ok?
Thanks!
-Lars
Code:
program test;
begin
writeln('Hello World');
end.
Code:
[Session started at 2011-01-29 13:20:21 -0800.]
Hello World
Heap dump by heaptrc unit
6 memory blocks allocated : 999/1016
6 memory blocks freed : 999/1016
0 unfreed memory blocks : 0
True heap size : 360448 (96 used in System startup)
True free heap : 360352
The Debugger has exited with status 0.
At this point I should just count my blessings and be happy I can do everything in xcode but I will ask any way
Thanks!
-Lars