~aleteoryx/tclfeed-bsky

ref: b3ea74ca597c1b44e093e572a00a04b0ac77f0b1 tclfeed-bsky/src/algos.tcl -rw-r--r-- 200 bytes
b3ea74caAleteoryx readme update 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]
}