Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 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