Added clamp function

This commit is contained in:
Bruce Hill 2019-01-07 20:44:39 -08:00
parent 712b9bd682
commit 3ceca7b635

View File

@ -137,6 +137,11 @@ test:
$best_key = $key $best_key = $key
return $best return $best
externally ($ clamped between $min and $max) means:
if ($ < $min): return $min
if ($ > $max): return $max
return $
# Random functions # Random functions
externally (seed random with $) means: externally (seed random with $) means:
lua> (" lua> ("