isaacg1 / pyth

Pyth, an extremely concise language. Try it here:
https://pyth.herokuapp.com/
MIT License
263 stars 57 forks source link

Convert items to string before joining #142

Closed jakobkogler closed 9 years ago

jakobkogler commented 9 years ago

Lots of tests failed because of the join only joins strings. E.g. the test U3 broke, because all sequence items are numbers.

Easy fix with map(str, a). All tests passes now.

isaacg1 commented 9 years ago

Sorry, I forgot to actually commit and push the change.

Here it is: https://github.com/isaacg1/pyth/commit/0d1218d61499768ecd56fc7f517865163d2e18bd

Sorry about that.