Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
set s [expr { ($s < 9) ? 9 : $s }]
if {$s < 9} {set s 9}
set msg "Thank you for your purchase of $num "
append msg [expr {($num > 1) ? "geese" : "goose"}]
set msg "Thank you for your purchase of $num "
if {$num > 1} {
append msg "geese"
} else {
append msg "goose"
}
proc test1 {s} {
set s [expr { ($s < 9) ? 9 : $s }]
}
proc test2 {s} {
if {$s < 9} {set s 9}
}