mirror of
https://github.com/tu-darmstadt-informatik/Tu-Darmstadt-Informatik-Kurse.git
synced 2025-12-13 09:55:48 +00:00
16 lines
233 B
Promela
16 lines
233 B
Promela
mtype = {hi, bye};
|
|
chan ch = [0] of {mtype};
|
|
|
|
active proctype Server () {
|
|
int i;
|
|
do
|
|
:: ch ? hi -> printf("Hello.\n")
|
|
:: ch ? bye -> printf("See you.\n"); break
|
|
od
|
|
}
|
|
|
|
active proctype Client() {
|
|
ch ! hi; ch ! bye
|
|
}
|
|
|