/ Published in: Pascal
Expand |
Embed | Plain Text
program Test; var a:integer; begin a:=10; writeln(a); end.
Comments
Subscribe to comments
You need to login to post a comment.
program Test; var a:integer; begin a:=10; writeln(a); end.
Subscribe to comments
You need to login to post a comment.
hey i think that you could possibly make this more interesting. also, instead of having ` var a:integer;
begin a:=10; ` you could simply put
` const a:integer = 10;
begin writeln(a); end. ` which would have been a lot shorter
hey i think that you could possibly make this more interesting. also, instead of having
var a:integer; begin a:=10;you could simply put
const a:integer = 10; begin writeln(a); end.which would have been a lot shorter
This is an amazing program. You have revolutionized programming for me.
wait, computers can do that?!?