Initial commit
This commit is contained in:
commit
07ec57a453
27 changed files with 1853 additions and 0 deletions
12
src/languages/haskell.js
Normal file
12
src/languages/haskell.js
Normal file
|
@ -0,0 +1,12 @@
|
|||
const Language = require('../struct/Language');
|
||||
|
||||
class Haskell extends Language {
|
||||
constructor() {
|
||||
super('haskell', {
|
||||
highlight: 'hs',
|
||||
aliases: ['haskell', 'hs']
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Haskell;
|
Loading…
Add table
Add a link
Reference in a new issue