Merge branch 'master' of https://github.com/1Computer1/comp_iler
This commit is contained in:
commit
19038ceca8
8 changed files with 55 additions and 0 deletions
|
@ -31,6 +31,7 @@ class HelpCommand extends Command {
|
|||
'- JavaScript',
|
||||
'- Python',
|
||||
'- Haskell',
|
||||
'- Go',
|
||||
'',
|
||||
'Read the readme for more information: <https://github.com/1Computer1/comp_iler>'
|
||||
]);
|
||||
|
|
12
src/languages/go.js
Normal file
12
src/languages/go.js
Normal file
|
@ -0,0 +1,12 @@
|
|||
const Language = require('../struct/Language');
|
||||
|
||||
class Go extends Language {
|
||||
constructor() {
|
||||
super('go', {
|
||||
highlight: 'go',
|
||||
aliases: ['go']
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Go;
|
12
src/languages/pascal.js
Normal file
12
src/languages/pascal.js
Normal file
|
@ -0,0 +1,12 @@
|
|||
const Language = require('../struct/Language');
|
||||
|
||||
class Pascal extends Language {
|
||||
constructor() {
|
||||
super('pascal', {
|
||||
highlight: 'pas',
|
||||
aliases: ['pascal', 'pas']
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Pascal;
|
Loading…
Add table
Add a link
Reference in a new issue