Tell me which language it is ??? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Tell me which language it is ???

Program Example15; uses Crt; { Program to demonstrate the Delay function. } var i : longint; begin WriteLn('Counting Down'); for i:=10 downto 1 do begin WriteLn(i); {Wait one second} Delay(1000); end; WriteLn('BOOM!!!'); end.

3rd Mar 2019, 10:53 AM
Salah Ës
Salah Ës - avatar
1 Answer
+ 11
I think it's Pascal, though there are typos in syntax (uppercase initials)
3rd Mar 2019, 10:58 AM
Ipang