New language: Pug
This commit is contained in:
parent
a66ed3ce21
commit
8ef7581a9f
|
@ -814,6 +814,17 @@ echo "Hello, world!\\n";
|
||||||
|
|
||||||
main :-
|
main :-
|
||||||
write("Hello, world!"), nl.
|
write("Hello, world!"), nl.
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
pug: {
|
||||||
|
name: "Pug",
|
||||||
|
monacoLang: "pug",
|
||||||
|
main: "main.pug",
|
||||||
|
compile: "pug main.pug",
|
||||||
|
run: "prettier --no-config main.html",
|
||||||
|
template: `html
|
||||||
|
body
|
||||||
|
p Hello, world!
|
||||||
`,
|
`,
|
||||||
},
|
},
|
||||||
python: {
|
python: {
|
||||||
|
|
|
@ -55,6 +55,9 @@ cpanm -n Devel::REPL
|
||||||
# PHP
|
# PHP
|
||||||
npm install -g intelephense
|
npm install -g intelephense
|
||||||
|
|
||||||
|
# Pug
|
||||||
|
npm install -g prettier pug-cli
|
||||||
|
|
||||||
# ReasonML
|
# ReasonML
|
||||||
npm install -g bs-platform
|
npm install -g bs-platform
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue