YAPC::EU 2018 Glasgow Update!
This commit is contained in:
parent
22f33d4004
commit
4e2d22a71d
1170 changed files with 15042 additions and 3047 deletions
|
|
@ -0,0 +1,16 @@
|
|||
a := proc(bool)
|
||||
printf("a is called->%s\n", bool):
|
||||
return bool:
|
||||
end proc:
|
||||
b := proc(bool)
|
||||
printf("b is called->%s\n", bool):
|
||||
return bool:
|
||||
end proc:
|
||||
for i in [true, false] do
|
||||
for j in [true, false] do
|
||||
printf("calculating x := a(i) and b(j)\n"):
|
||||
x := a(i) and b(j):
|
||||
printf("calculating x := a(i) or b(j)\n"):
|
||||
y := a(i) or b(j):
|
||||
od:
|
||||
od:
|
||||
Loading…
Add table
Add a link
Reference in a new issue