[#24] New language: AspectJ

This commit is contained in:
Radon Rosborough 2020-09-27 14:52:52 -07:00
parent cd29dd30d5
commit ee157193a9
2 changed files with 16 additions and 0 deletions

View File

@ -212,6 +212,19 @@ int main() {
return 0; return 0;
} }
`, `,
},
aspectj: {
aliases: ["aj"],
name: "AspectJ",
main: "Main.aj",
compile: "ajc Main.aj",
run: "java Main",
template: `public class Main {
public static void main(String[] args) {
System.out.println("Hello, world!");
}
}
`
}, },
ats: { ats: {
aliases: ["dats"], aliases: ["dats"],

View File

@ -39,6 +39,9 @@ asciidoc
# AspectC++ # AspectC++
aspectc++ aspectc++
# AspectJ
aspectj
# ATS # ATS
ats2-lang ats2-lang