Data update

This commit is contained in:
Ingy döt Net 2025-08-12 11:43:10 -07:00
parent 4924dd0264
commit cb74b7914d
10 changed files with 60 additions and 11 deletions

View file

@ -0,0 +1,13 @@
proc multiply { a b args } {
set product 1
foreach m [list $a $b {*}$args] {
set product [expr {$product * $m}]
}
return $product
}
puts stdout [multiply 3 4 7 9 -2 -5 ]