#1886: set_string_native() not implemented in class 'TclString'
--------------------+-------------------------------------------------------
 Reporter:  coke    |       Owner:        
     Type:  bug     |      Status:  new   
 Priority:  normal  |   Milestone:        
Component:  none    |     Version:  master
 Severity:  high    |    Keywords:        
     Lang:  tcl     |       Patch:        
 Platform:          |  
--------------------+-------------------------------------------------------

Comment(by coke):

 Unrolling the for loop, here's some tcl code that also demonstrates the
 issue:

 {{{
 set i 1
 set i [expr $i+1]
 puts $i
 set i [expr $i+1]
 puts $i
 }}}

 (should print 2\n3\n)

 however, THIS code works:

 {{{
 set i 1
 set i [expr $i +1]
 puts $i
 set i [expr $i +1]
 puts $i
 }}}

-- 
Ticket URL: <https://trac.parrot.org/parrot/ticket/1886#comment:6>
Parrot <https://trac.parrot.org/parrot/>
Parrot Development
_______________________________________________
parrot-tickets mailing list
[email protected]
http://lists.parrot.org/mailman/listinfo/parrot-tickets

Reply via email to