hello world pcal

This commit is contained in:
Oskar Thoren 2019-12-03 21:48:57 +08:00
parent dcc71f4779
commit 2c48c38e12
No known key found for this signature in database
GPG Key ID: B2ECCFD3BC2EF77E
1 changed files with 8 additions and 0 deletions

8
tlaplus/gossip/hello.tla Normal file
View File

@ -0,0 +1,8 @@
EXTENDS TLC
(* --algorithm hello_world
variable s \in {"Hello", "World!"};
begin
A:
print s;
end algorithm; *)