compiler-discord/src/languages/python.js

13 lines
240 B
JavaScript
Raw Normal View History

2019-03-12 10:09:46 +01:00
const Language = require('../struct/Language');
class Python extends Language {
constructor() {
super('python', {
highlight: 'py',
aliases: ['python', 'py']
});
}
}
module.exports = Python;