Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
thanks. didn't see the double instructions until today. it would be better to follow the step by step style of the program and say:
decrease by 1
decrease by 1
instead of "decrease its value by 2" which looks like an instruction call.
dec x
should decrease the value inx
by one. The example says "decrease by 2" because there are twodec a
in a row in the example program.ISSUE TYPO?:
dec x - decreases the content of the register x by one
=/=
decrease its value by 2,
should "dec" decrease by one or two?