~aleteoryx/tclfeed-bsky

ref: 10a4e0f8bb567ee7e0c88d9666c7ac38ba4dbb0d tclfeed-bsky/src/algos.tcl -rw-r--r-- 200 bytes
10a4e0f8Aleteoryx did.json 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]
}