Add Prolog

This commit is contained in:
1computer1 2019-03-15 20:44:37 -04:00
parent b13857e7a4
commit 41d4500ce6
4 changed files with 18 additions and 0 deletions

11
src/languages/prolog.js Normal file
View file

@ -0,0 +1,11 @@
const Language = require('../struct/Language');
class Prolog extends Language {
constructor() {
super('prolog', {
aliases: ['prolog']
});
}
}
module.exports = Prolog;