Add Prolog
This commit is contained in:
parent
b13857e7a4
commit
41d4500ce6
4 changed files with 18 additions and 0 deletions
11
src/languages/prolog.js
Normal file
11
src/languages/prolog.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
const Language = require('../struct/Language');
|
||||
|
||||
class Prolog extends Language {
|
||||
constructor() {
|
||||
super('prolog', {
|
||||
aliases: ['prolog']
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Prolog;
|
Loading…
Add table
Add a link
Reference in a new issue