~aleteoryx/tclfeed-bsky

ref: 0924982a1ed287195a3f597f04c0d583d2556833 tclfeed-bsky/src/algos.tcl -rw-r--r-- 200 bytes
0924982aAleteoryx probably the last of the mod tools for now. 29 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]
}