not

v


Summary

Return true if V is false

Examples

(not (>= "2" 3))
#t

(not (< 3 2))
#t

(not (= #f #t))
#t

(not (< 5 1))
#t

(not #f)
#t

(not #t)
#f

Bytecode

Probably only interesting to you if you want to understand more about the Nujel VM or care very much about performance.

(    0 ($get/val 'v))
(    2 ($jf* 7))
(    5 ($push/false))
(    6 ($jmp* 4))
(    9 ($push/true))
(   10 ($ret))

Related