Answers for "instal pascal di sublime text"

0

instal pascal di sublime text

{
	"shell": true,
	"cmd": ["fpc", "${file_path}/${file_base_name}", "&&", "start", "cmd", "/c", "$file_base_name.exe", "&", "pause"],
	"selector": "source.pascal",
	"variants": [
		{
			"cmd": ["start", "cmd", "/c", "$file_base_name.exe & pause"],
			"name": "Run",
			"shell": true
		},
		{
			"cmd": ["fpc", "${file_path}/${file_base_name}"],
			"name": "Compile",
			"shell": true
		}
	]
}
Posted by: Guest on March-09-2022
0

instal pascal di sublime text

program coba;

begin
  writeln('Konnichiwa!');
  readln();
end.
Posted by: Guest on March-02-2022

Browse Popular Code Answers by Language