~aleteoryx/tclfeed-bsky

ref: 4071a098c497a9ec909b9dba15d029a28b33f1d8 tclfeed-bsky/src/algos.tcl -rw-r--r-- 200 bytes
4071a098Aleteoryx fix this again 30 days ago
                                                                                
1
2
3
4
5
6
7
8
9
namespace eval ::algos { variable list {} }

foreach file [glob src/algos/*.tcl] {
  source $file
}

foreach algo [namespace children ::algos] {
  lappend ::algos::list [lindex [split $algo :] end]
}