#lunapnr — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #lunapnr, aggregated by home.social.
-
-
Writing a small TCL interpreter to enable TCL in #LunaPnR
Currently it can do fizz-buzz :)
```
set x 1;
while {$x < 100} {
set txt "";
if {$x % 3 == 0} { set txt "FIZZ "; };
if {$x % 5 == 0} { set txt "${txt}BUZZ "; };
puts "$x $txt";
incr x;
}
```