mirror of
https://github.com/RGBCube/CSAssignments
synced 2025-07-26 13:37:44 +00:00
Start working on new interactive runner
This commit is contained in:
parent
1080941194
commit
38ba3af643
23 changed files with 202 additions and 15 deletions
16
sources/c/language.toml
Normal file
16
sources/c/language.toml
Normal file
|
@ -0,0 +1,16 @@
|
|||
name = "C"
|
||||
description = "C (pronounced like the letter c) is a general-purpose computer programming language"
|
||||
|
||||
[colors]
|
||||
foreground = 0x000000
|
||||
background = 0x00599d
|
||||
|
||||
[build]
|
||||
common = "gcc -o {out-file} {main-file}"
|
||||
|
||||
[run]
|
||||
linux = "./{out-file}"
|
||||
windows = "{out-file}"
|
||||
|
||||
[dependencies]
|
||||
common = ["gcc"]
|
Loading…
Add table
Add a link
Reference in a new issue