From: igor d. <sau...@gm...> - 2018-12-12 01:52:10
|
Hello there, This is a small part of app written in lisp. And there is something wrong proc make_lst_of_val_PHI2 {tmp_val_PHI2 step tmp_lst_of_val_PHI2} { set tmp_val_PHI2 0 set step 0.1 set tmp_lst_of_val_PHI2 0 while {$step < 6.28} { set tmp_val_PHI2 [expr $tmp_val_PHI2 + $step] lappend tmp_lst_of_val_PHI2 $tmp_val_PHI2 } put $tmp_lst_of_val_PHI2 } output no such variable tmp_lst_of_val_PHI2. |