What happens in Brainfuck if I try to "-" in a cell that contains a 0?
>-
Also, what happens if I try to start a loop while pointing to a 0 cell?
>[]
Edit: I forgot to mention it, but I'm trying to make an interpreter. Here's a piece of code I was given to use as an example:
;>;<[->++<][->++<]
In the second loop, the cell pointed at is "0", so my program starts an infinite loop.