hingston/7-billion-humans-solutions

Code syntax has changed in version 2231 - Old solutions can't be pasted until updated

hingston opened this issue · 0 comments

Example:

Before:

-- 7 Billion Humans (2145) --
-- 46: Compulsory Office Romance --

a:
if e == worker
  tell e Hi!
  listen Hi!
else
  listen Hi!
  tell w Hi!
jump a

After:

-- 7 Billion Humans (2231) --
-- 46: Compulsory Office Romance --

a:
if e == worker:
	tell e hi
	listenfor hi
else:
	listenfor hi
	tell w hi
endif
jump a

I will try to find time to update these but if someone is willing to help that would be great!