New language: LiveScript
This commit is contained in:
parent
95fa0df9bb
commit
febaef0770
|
@ -642,6 +642,16 @@ PLEASE GIVE UP
|
||||||
template: `body:before {
|
template: `body:before {
|
||||||
content: "Hello, world!";
|
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: {
|
llvm: {
|
||||||
|
|
|
@ -55,6 +55,9 @@ julia -e 'using Pkg; Pkg.add("LanguageServer")'
|
||||||
# Less
|
# Less
|
||||||
npm install -g less
|
npm install -g less
|
||||||
|
|
||||||
|
# LiveScript
|
||||||
|
npm install -g livescript
|
||||||
|
|
||||||
# Perl
|
# Perl
|
||||||
cpanm -n Devel::REPL
|
cpanm -n Devel::REPL
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue