Add F#
This commit is contained in:
parent
b3a464c8d6
commit
81ce8fcf87
4 changed files with 23 additions and 0 deletions
12
src/languages/fsharp.js
Normal file
12
src/languages/fsharp.js
Normal file
|
@ -0,0 +1,12 @@
|
|||
const Language = require('../struct/Language');
|
||||
|
||||
class FSharp extends Language {
|
||||
constructor() {
|
||||
super('fsharp', {
|
||||
highlight: 'fs',
|
||||
aliases: ['fsharp', 'f#', 'fs']
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = FSharp;
|
Loading…
Add table
Add a link
Reference in a new issue