Skip to main content
2 of 7
Shortened
noahnu
  • 111
  • 3

PHP, 84 79 bytes

<?php for($c=0;$i=fgetc(STDIN);$c+=$i==';')if($i=='#'&&print(chr($c%127)))$c=0; 

Reads from stdin.

Try it online!


From 84 to 79, I replaced the charcodes with the strings to remove unnecessary ord function. Replaced nested braces with conditional &&.

noahnu
  • 111
  • 3