compiler-discord/README.md
2019-03-13 00:58:43 -04:00

117 lines
1.2 KiB
Markdown

# Comp_iler
Sandboxed code execution discord bot.
## Usage
### Code Blocks
````
>```lang
code
```
````
With options:
````
>[options]```lang
code
```
````
### Inline Code
```
>`lang code`
```
With options:
````
>[options]`lang code`
````
### Examples
````
>```hs
main :: IO ()
main = print 1
```
````
````
>[harmony]```js
class Foo {
bar = 1;
}
console.log(new Foo().bar);
```
````
```
>`py print('hello world')`
```
## Supported Languages
One of the following languages is set in `lang`.
- `js` JavaScript (Node 10.14.2)
- `py` Python (CPython 3.6.8)
- `hs` Haskell (GHC 8.4.3)
- `pas` Pascal (FPC 3.0.4)
- `go` Go (Go 1.12)
## Options
Options are optionally set in `options`, which is a semicolon-delimited list of `flag` or `flag=value`.
For JavaScript:
- `harmony` enables harmony features (`--harmony` on node)
For Python:
- None
For Haskell:
- None
For Pascal:
- None
For Go:
- None
## Packages
Apart from the standard libraries, some other libraries come pre-installed.
For JavaScript:
- Node libraries
- lodash
- moment
- cheerio
For Python:
- numpy
For Haskell:
- GHC libraries
- aeson
- async
- attoparsec
- integer-logarithms
- megaparsec
- random
- scientific
- split
- vector
For Pascal:
- None
For Go:
- None