1
Fork 0
mirror of https://github.com/RGBCube/CSAssignments synced 2025-07-26 05:27:46 +00:00

Refactor most of the interactive runner

This commit is contained in:
RGBCube 2022-11-05 21:16:42 +03:00
parent d782a4d879
commit 58f5c52db5
9 changed files with 138 additions and 122 deletions

View file

@ -1,15 +1,15 @@
name = "C"
description = "C (pronounced like the letter c) is a general-purpose computer programming language"
[colors]
foreground = "ffffff"
background = "00599d"
[color]
foreground = 0xffffff
background = 0x00599d
[build]
common = "gcc -o {out-file} {main-file}"
common = "gcc -o {out} {main}"
[run]
common = "{}"
[dependencies]
common = ["gcc"]
[dependency]
common = [ "gcc" ]