Colon implementation in SH
Colon implementation in SH
I think something's wrong: when I do
CODE:
code here%54:
As I understand it, it ought to go left so what is executed is:
% []
5 [5]
4 [5,4]
: []
4 [4]
5 [4,5]
% [4,5]
e [4,5]
d [4,5] etc
What I actually get is it attempting to go up - is it that it turns 90 degrees left then? If so, could that be written into the instructions please?
CODE:
code here%54:
As I understand it, it ought to go left so what is executed is:
% []
5 [5]
4 [5,4]
: []
4 [4]
5 [4,5]
% [4,5]
e [4,5]
d [4,5] etc
What I actually get is it attempting to go up - is it that it turns 90 degrees left then? If so, could that be written into the instructions please?
There is no spoon.
the instructions aren't saying that you will go left, but that you turn left, and this is indeed a turn of 90 degrees. you can see it as a conditional '/' '\' or ' '. It is always relative to the direction you are going.
To be sure what a command is exactly doing, you can always check the php implementation, or experiment with the implementation.
To be sure what a command is exactly doing, you can always check the php implementation, or experiment with the implementation.
New question (sorry!)
how will this work - does it put spaces in, line breaks etc, down to (5,1) in the code, or is there just this isolated space sitting at (5,1), surrounded by nothing, not even spaces?
Code: Select all
\
/ w15*48 /
\!
There is no spoon.
I have no clue, and I don't see the use of what you are doing. Why would you want to change a code value that you aren't processing.
If you really want to know, you have ways to find this on yourself. 2 ways spring to mind:
1. You check the implementation of Superhack, and see how it is working. At the same time, you can increase your knowledge about php.
2. Maybe a bit easier, write a program where you try to execute the code value you just inserted, and see how it behaves. For this, I would certainly use the php implementation, if you want to be sure that the result is as expected when you try to use this in a challenge.
If you really want to know, you have ways to find this on yourself. 2 ways spring to mind:
1. You check the implementation of Superhack, and see how it is working. At the same time, you can increase your knowledge about php.
2. Maybe a bit easier, write a program where you try to execute the code value you just inserted, and see how it behaves. For this, I would certainly use the php implementation, if you want to be sure that the result is as expected when you try to use this in a challenge.
This is just for the purpose of writing an interpreter - I want it to be able to cover things like this (Delphi will throw an access violation if I try to write somewhere which doesn't exist, but no such violation occurs in the PHP implementation). Thanks for the ideas - I couldn't find the PHP source (stupid given that there is a link at the top of the page
)

There is no spoon.
No-ops in SH
The implementation in PHP takes no-ops as being one cycle; the Javascript implementation just skips them out. Try the third example given:
The PHP one includes all the '=', '|' etc, while the JS one does not.
Code: Select all
9&\0000@\!
s /\ @
/\ || @
p7 || @
\/ || |
$====/\=/
There is no spoon.