diff --git a/README.md b/README.md index f7bebd51..f79d0871 100755 --- a/README.md +++ b/README.md @@ -56,6 +56,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Ante](a/ante.ante) * [Antlang](a/AntLang.ant) * [Apc](a/apc.apc) +* [Apex](a/Apex.cls) * [Apl](a/apl.apl) * [Applescript](a/applescript.scpt) * [Arc](a/arc.arc) diff --git a/a/Apex.cls b/a/Apex.cls new file mode 100644 index 00000000..5ed2c358 --- /dev/null +++ b/a/Apex.cls @@ -0,0 +1,5 @@ +global with sharing class HelloWorld { + global static void main() { + System.debug('Hello World'); + } +} \ No newline at end of file