hdfs-mount/Int32Min.go

13 строки
266 B
Go

// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.
package main
// Returns minimum of two integers
func Int32Min(a int, b int) int {
if a < b {
return a
} else {
return b
}
}