isaacg1 / pyth

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

Backslashes error in third argument of substitution #211

Closed kckennylau closed 7 years ago

kckennylau commented 8 years ago

:z"b""\\" does not work but :z"b""d" works.

I've also tried :z"b""\\\\" which also does not work.

refi64 commented 8 years ago

FWIW, :z\b\\ is shorter and has the same effect.

isaacg1 commented 7 years ago

Pyth's online interpreter blacklists lots of stuff to prevent hacking. Unfortunately, it's a little overzealous. Maybe someday we'll fix this, like with a sandbox system, but it's not something I'm going to work on.