Displays all of the languages the bot currently supports.
Displays all of the compilers for a given language, be sure to specify a language!
Example:
;compilers c++
Sends a compilation request. This command supports specification of the language, compiler, stdin, and compiler flags.
Example:
;compile c++
```
#include <iostream>
int main() {
std::cout << "Hello world!" << std::endl;
}
```