# New Ticket Created by Will Coleda # Please include the string: [perl #38087] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/rt3/Ticket/Display.html?id=38087 >
convert [puts] to an inlined variant. This would be a good inline to experiment with some optimizations: For example, if someone calls: puts -nonewline {Hello World} That can be pretty well optimized, as opposed to: set a "-nonewline" set b "Hello [set c World]" puts $a $b