New language: LiveScript
This commit is contained in:
parent
95fa0df9bb
commit
febaef0770
|
@ -642,6 +642,16 @@ PLEASE GIVE UP
|
|||
template: `body:before {
|
||||
content: "Hello, world!";
|
||||
}
|
||||
`,
|
||||
},
|
||||
livescript: {
|
||||
aliases: ["lsc", "ls"],
|
||||
name: "LiveScript",
|
||||
monacoLang: "plaintext",
|
||||
repl: "lsc",
|
||||
main: "main.ls",
|
||||
run: "lsc -r ./main.ls; lsc",
|
||||
template: `console.log "Hello, world!"
|
||||
`,
|
||||
},
|
||||
llvm: {
|
||||
|
|
|
@ -55,6 +55,9 @@ julia -e 'using Pkg; Pkg.add("LanguageServer")'
|
|||
# Less
|
||||
npm install -g less
|
||||
|
||||
# LiveScript
|
||||
npm install -g livescript
|
||||
|
||||
# Perl
|
||||
cpanm -n Devel::REPL
|
||||
|
||||
|
|
Loading…
Reference in New Issue