orientation: returns the turtle's orientation in a list which contains: [ roll pitch heading ]. Note the number order, if for example, the orientation value is [100 20 90], this means that if you want the same orientation starting from the origin position (after a clearscreen instruction), you'll have to write the following sequence:
rightroll 100 up 20 right 90
If you inverse the instruction's order, you don't obtain the valid orientation!