Link to home
Start Free TrialLog in
Avatar of melancon
melancon

asked on

Pascal to Html

If there is a way that I can transfer pascal to a HTML file??
Avatar of mrdeejay
mrdeejay

I have been searching for the same "answer". Apparently there is a way to do this in using Pascal and C together. It may be easier to simply learn perl and .cgi. I would also look into Delphi. If you know and understand one language (Pascal), it then becomes easier to learn and understand other programming and script languages.
ASKER CERTIFIED SOLUTION
Avatar of mheacock
mheacock

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
If you mean displaying Pascal code as an HTML file, the short answer is to prepend this:
<HTML>
<HEAD><TITLE>Some Pascal code</TITLE></HEAD>
<BODY>
<PRE>
put your source code in here, and then append this:
</PRE>
</BODY>
</HTML>