Tell me which language it is ??? | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
+ 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 Respuesta
+ 11
I think it's Pascal, though there are typos in syntax (uppercase initials)
3rd Mar 2019, 10:58 AM
Ipang