Introspection: Difference between revisions

Content added Content deleted
m (syntax highlighting fixup automation)
(add RPL)
Line 2,136: Line 2,136:
Function 'abc' is not defined
Function 'abc' is not defined
</pre>
</pre>

=={{header|RPL}}==
{{works with|HP|49}}
≪ '''IF''' VERSION DROP DUP SIZE DUP 3 - SWAP SUB STR→ 2.15 <
'''THEN''' "Too old RPL version"
'''ELSE'''
'<span style="color:green">BLOOP</span>'
'''IFERR''' RCL
'''THEN''' ": variable not defined" +
'''ELSE'''
ABS
'''IF''' DUP TYPE 6 ==
'''THEN''' ": function not defined" + NIP
'''END'''
'''END'''
'''END'''
≫ '<span style="color:blue">INTROSP</span>' STO


=={{header|Ruby}}==
=={{header|Ruby}}==