I have TextWrangler version 3.1. I'm trying to write in pascal but
whenever I try to run it, I'm told, "The unix tool referenced in the
‘shebang’ line cannot be found (application error code: 13305)"
After researching this I have determined that I need to add #!/usr/bin/
(something). I also know that the (something) is somehow related to
pascal, or something. However, I don't know the official (something)
that needs to be put there.
Please tell me what I should add, or if I'm horribly wrong and I need
to do something else. Here is my code (It's just to test to see if my
mac could do pascal in TextWrangler):
#!/usr/bin/(something)
Program Checking;
Begin
writeln('This program is working!');
readln;
end.