I looked a little harder and cleared my eyes, and by looking at the ASCII table and examining the stacks in Fish, I realized that my answer was as simple as this:
ao;
The rationale for this fish holds the characters on the stack as numbers. Therefore, loading the number 10 (Fish accepts hexadecimal in src) onto the stack and then printing it with o (simple character output), a carriage return is printed.
So my code becomes:
0:nao1:nv n: +@ :oa<
It was so obvious that it hurt after I did it. Hope this helps someone else in the future.
Addison crump
source share