| |||||||
|
|
Click here to download plain text source code.
# subroutine name: min # Input: number1, number2 # returns less of 2 numbers sub min { if ($_[0]>$_[1]) {return $_[1]} else {return $_[0]}; } |
|||||||||||||||||||||
| Copyright © 1999-2007 Atomicsoft Ltd. All Rights Reserved. | ||