RosettaCodeData/Task/IBAN/Tcl/iban-2.tcl
2023-07-01 13:44:08 -04:00

4 lines
219 B
Tcl

set iban "GB82 WEST 1234 5698 7654 32"
puts "$iban is [expr {[verifyIBAN $iban] ? {verified} : {unverified}}]"
set not "GB42 WEST 1234 5698 7654 32"
puts "$not is [expr {[verifyIBAN $not] ? {verified} : {unverified}}]"