How to Download Dev++
Download Dev++ Compiler From here!
its totally free extract the .zip file in to C Drive and add the bin folder to environmental variables now you can compile by running:
d++ filename.dpp
!import iostrm
func num main(){
prt("Hello World")
num a = 2
if(a==2){
prt("A is 2")
}else{
prt("A is")
prt(a)
}
return 0;
}