mirror of
https://github.com/tu-darmstadt-informatik/Tu-Darmstadt-Informatik-Kurse.git
synced 2025-12-13 09:55:48 +00:00
9 lines
97 B
Promela
9 lines
97 B
Promela
chan request = [0] of { byte };
|
|
|
|
active proctype Client0() {
|
|
request ! 0;
|
|
printf("Here")
|
|
}
|
|
|
|
|