# New Ticket Created by Will Coleda # Please include the string: [perl #38075] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/rt3/Ticket/Display.html?id=38075 >
tcl's expr currently only supports unary and binary ops. Adding ternary support can be faked by having both '?' and ':' be binary ops that get processed slightly differently, or perhaps adding a new lib/tclternaryops.pir file/class. See && and || in binary ops for dealing with conditional eval.