Hey i was just wondering how many members on here know Pascal. I myself have about 2 years knowledge on the language.
So reply if you know, and how good you are at it.
Thanks :)
Printable View
Hey i was just wondering how many members on here know Pascal. I myself have about 2 years knowledge on the language.
So reply if you know, and how good you are at it.
Thanks :)
I've had a browse with it, nothing full on.
What did you think of it?
I have slight knowledge of it. I learn't most of it whilst learning VB. I may take the time to learn it, I'm not sure yet.
Well i think it's worth learning, although the output is only text/DOS based i think it is a fun program to learn.
Good luck if you choose too :)
yea i know it quite well, rather simple language.
program programiwrotein1minutelol;
Uses crt;
var
age : integer
procedure setage;
begin
gotoxy(2,2);
writeln('Enter your age ');
readln(age);
end;
begin
setage;
end.
simple etc etc
Lol, Ive just enhanced your code xD
lol xDCode:program hello;
uses crt;
var
age : integer;
yourname : string;
procedure setage;
begin
ClrScr;
writeln('Enter your age');
Readln(age);
writeln('What is your name?');
Readln(yourname);
writeln('So far we have... Your name is ', yourname, ' and you are ', age, ' years old');
Readln;
end;
begin
setage;
end.
I tested it out abit years ago, didn't like it much so I gave up.
I studied it at AS level for a year and passed, I didn't really enjoy it though.