RosettaCodeData/Task/Introspection/Tcl/introspection-1.tcl
2023-07-01 13:44:08 -04:00

4 lines
144 B
Tcl

package require Tcl 8.4 ; # throws an error if older
if {[info exists bloop] && [llength [info functions abs]]} {
puts [expr abs($bloop)]
}