[#24] New language: AspectC++

This commit is contained in:
Radon Rosborough 2020-09-27 14:46:59 -07:00
parent dc33328746
commit cd29dd30d5
2 changed files with 17 additions and 0 deletions

View File

@ -197,6 +197,20 @@ message:
compile: "asciidoc -s main.adoc", compile: "asciidoc -s main.adoc",
run: "prettier --no-config main.html", run: "prettier --no-config main.html",
template: `Hello, world! template: `Hello, world!
`,
},
"aspectc++":{
aliases: ["aspectcpp"],
name: "AspectC++",
main: "main.cpp",
compile: `ag++ main.cpp -o main | (grep -v "TO BE FIXED" || true)`,
run: "./main",
template: `#include <iostream>
int main() {
std::cout << "Hello, world!" << std::endl;
return 0;
}
`, `,
}, },
ats: { ats: {

View File

@ -36,6 +36,9 @@ qemu-user-static
# AsciiDoc # AsciiDoc
asciidoc asciidoc
# AspectC++
aspectc++
# ATS # ATS
ats2-lang ats2-lang