Post History
///, 13 bytes Hello, World! Someone had to. 18 bytes using replacement /x/H/xello, World! 23 bytes using two-layer replacement /a/Hello, World!//b/a/b a is replaced with Hello, World! ...
Answer
#1: Initial revision
## ///, 13 bytes ``` Hello, World! ``` Someone had to. **18 bytes using replacement** ``` /x/H/xello, World! ``` **23 bytes using two-layer replacement** ``` /a/Hello, World!//b/a/b ``` `a` is replaced with `Hello, World!` in `/b/a/b`, creating `/b/Hello, World!/b` which prints `Hello, World!` at the end.