1# Program Formatter
This parser takes in well-formed 1# programs and spits out the same program with nice formatting and comments. Whitespace is stripped out, so input can be one line, or many lines.
This formatter WILL remove any extra comments you have, be advised.
For Example:
1#####111###11####111####
Becomes:
1##### ;Line 1 - Case on R1
111### ;Line 2 - Skip forward 3 lines (execute line 5)
11#### ;Line 3 - Skip backward 2 lines (execute line 1)
111#### ;Line 4 - Skip backward 3 lines (execute line 1)