Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
I was aware of this but I forgot to add it.
You have two workers, A and B, on neighboring tiles. A is checking the contents of B's tile, and B is also checking something. A will block at the if until B's own if command is complete. The timing of unblocking A depends on what B does next.
If B does a step, pickUp, or jump, then A unblocks immediately, and A and B will act simultaneously.
However, if B's next operation is drop, then A will continue blocking until B finishes dropping.
To see this in action, load up puzzle #20 and run this program:
pickup s
if w == nothing or
w != nothing:
step n
endif
if w == nothing or
w != nothing:
drop
endif
Everybody picks up their cube at once. Then, everbody steps north at once. Then, they drop their cubes in order from left to right. The last person waits for seven other people to finish dropping in sequence, instead of dropping immediately.
IF
e = worker AND
s = datacube OR
w = worker
step se
else
step s.
How come someone who has nothing to the e (not complying with the first "if" condition) does step se?
I dont get it...