~aleteoryx/tclfeed-bsky

ref: f9c699e615d3debea80af458f15847debb21f543 tclfeed-bsky/src/algos.tcl -rw-r--r-- 200 bytes
f9c699e6Aleteoryx improved heuristics (curse the french!); make the error logging code work 25 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]
}