mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
10 lines
86 B
Go
10 lines
86 B
Go
package main
|
|
|
|
func abs(x int) int {
|
|
if x >= 0 {
|
|
return x
|
|
} else {
|
|
return x
|
|
}
|
|
}
|