~aleteoryx/tclfeed-bsky

ref: 6cb8a96336f904d4e0cadb74b2b597e0b55c535f tclfeed-bsky/src/algos.tcl -rw-r--r-- 200 bytes
6cb8a963Aleteoryx marginally better moderation tooling 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]
}