OP_15
INFO
Opcode number: 95
Byte representation: 0x5f
Other names: OP_PUSHNUM_15
Short Description: Push the number 15 onto the stack.
The OP_15 opcode will push 0x0f onto the stack. This opcode uses the minimally encoded integers format.
Examples
Example 1
shell
# ASM script
OP_15 OP_15
# Raw script
5f5f
# Final stack
15
15Example 2
shell
# ASM script
OP_15 OP_15 OP_ADD
# Raw script
5f5f93
# Final stack
30