enc: add default config python

This commit is contained in:
asep.komarudin 2024-06-22 13:00:28 +07:00
parent 178c969312
commit 35c170c09a
6 changed files with 53 additions and 54 deletions

View file

@ -2,7 +2,7 @@
-- cpp="gcc $fileName -lstdc++ -o $fileNameWithoutExt && $fileNameWithoutExt"
local rfile = {
java = "cd $dir && javac $fileName && java $fileNameWithoutExt",
python = "python3 -u",
python = "python -u",
typescript = "ts-node $dir/$fileName",
rust = "cd $dir && rustc $fileName && $dir/$fileNameWithoutExt",
cpp = "cd $dir && g++ $fileName -o $fileNameWithoutExt && $dir/$fileNameWithoutExt",