[#24] New language: PROMELA

This commit is contained in:
Radon Rosborough 2020-10-03 11:08:31 -07:00
parent a3e15b67ba
commit 6cfbc5bc95
2 changed files with 13 additions and 0 deletions

View File

@ -2582,6 +2582,16 @@ pipi pikachu
main :-
write("Hello, world!"), nl.
`,
},
promela: {
aliases: ["spin", "pml"],
name: "PROMELA",
main: "main.pml",
run: "spin main.pml",
template: `active proctype main() {
printf("Hello, world!\\n");
}
`,
},
pug: {

View File

@ -88,6 +88,9 @@ rlwrap
# Prolog
swi-prolog
# Promela
spin
# PureScript
libtinfo5