exercism / euphoria

Exercism exercises in Euphoria.
https://exercism.org/tracks/euphoria
MIT License
3 stars 7 forks source link

add robot-simulator #87

Closed BNAndras closed 3 months ago

axtens commented 3 months ago

Curious why you used if compare(robot[3], "north") = 0 then rather than if equal(robot[3],"north") then, especially seeing as you only appear to be interested in = 0 and not in < 0 or > 0. It's not a big issue, but wanted to know why you chose one over the other

BNAndras commented 3 months ago

I was having trouble comparing the sequences with = so I figured I needed to do something special. I came across compare first in the docs so that’s what I used. I’ll update the example later today.