init - add project files
This commit is contained in:
9
tools/jet-2.12.0/internal/utils/min/min.go
Normal file
9
tools/jet-2.12.0/internal/utils/min/min.go
Normal file
@@ -0,0 +1,9 @@
|
||||
package min
|
||||
|
||||
// Int returns minimum of two int values
|
||||
func Int(a, b int) int {
|
||||
if a < b {
|
||||
return a
|
||||
}
|
||||
return b
|
||||
}
|
||||
Reference in New Issue
Block a user