Jump to content

Dev pascal help

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
3 replies to this topic

#1
ragingfear

ragingfear

    Newbie

  • Members
  • Pip
  • 4 posts
I can't compile anything on my Dev pascal when I compile or run I keep on getting this message. All I get is the .pas file no .exe.

Free Pascal Compiler version 1.0.6 [2002/04/23] for i386
Copyright © 1993-2002 by Florian Klaempfl
Target OS: Win32 for i386
Compiling e:\games\needfo~1\untitl~1.pas
Linking e:\games\needfo~1\projec~1.exe
7 Lines compiled, 0.6 sec

#2
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
Without seeing the source code, it's hard to tell what's going on.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#3
ragingfear

ragingfear

    Newbie

  • Members
  • Pip
  • 4 posts
Program win_hello (input,output);
Uses winCRT;
Var
i:string;
Begin
writeln ('Hello world');
readln (i);
End.

Did it on someone else's Turbo pascal for windows and it works!!!
I doubt anything is wrong with the code I'm just having trouble compiling with Dev pascal. Probably the format for Dev is different for Turbo pascal?

#4
TcM

TcM

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 11,147 posts
I think so.. download turbo pascal 7 from here:
Turbo Pascal 7.0 for Dos Download Page
Should work fine. And what is the aim of making a variable and then not use it?!