compiler-discord/src/languages/python.js
2019-03-12 05:09:46 -04:00

12 lines
240 B
JavaScript

const Language = require('../struct/Language');
class Python extends Language {
constructor() {
super('python', {
highlight: 'py',
aliases: ['python', 'py']
});
}
}
module.exports = Python;