[#24] New language: PROMELA
This commit is contained in:
parent
a3e15b67ba
commit
6cfbc5bc95
|
@ -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: {
|
||||
|
|
|
@ -88,6 +88,9 @@ rlwrap
|
|||
# Prolog
|
||||
swi-prolog
|
||||
|
||||
# Promela
|
||||
spin
|
||||
|
||||
# PureScript
|
||||
libtinfo5
|
||||
|
||||
|
|
Loading…
Reference in New Issue