This commit is contained in:
1computer1 2019-05-25 15:03:40 -04:00
parent c00ec96018
commit 5c13901d44
4 changed files with 23 additions and 0 deletions

12
src/languages/apl.js Normal file
View file

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