mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
10 lines
91 B
Go
10 lines
91 B
Go
package main
|
|
|
|
func absGood(x int) int {
|
|
if x >= 0 {
|
|
return x
|
|
} else {
|
|
return -x
|
|
}
|
|
}
|