Last active
November 11, 2022 09:41
-
-
Save ahoNerd/6f9eecebe3c1e91fd33ea81491c8883f to your computer and use it in GitHub Desktop.
Run and Compile Pascal with Sublime Text, read more at https://ahonerd.com/run-and-compile-pascal-with-sublime-text
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"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 | |
} | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
program coba; | |
begin | |
writeln('Konnichiwa!'); | |
readln(); | |
end. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment