[#24] New language: AspectC++
This commit is contained in:
parent
dc33328746
commit
cd29dd30d5
|
@ -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: {
|
||||||
|
|
|
@ -36,6 +36,9 @@ qemu-user-static
|
||||||
# AsciiDoc
|
# AsciiDoc
|
||||||
asciidoc
|
asciidoc
|
||||||
|
|
||||||
|
# AspectC++
|
||||||
|
aspectc++
|
||||||
|
|
||||||
# ATS
|
# ATS
|
||||||
ats2-lang
|
ats2-lang
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue