mirror of
https://github.com/github/codeql.git
synced 2026-08-04 17:33:18 +02:00
10 lines
97 B
Go
10 lines
97 B
Go
package main
|
|
|
|
func abs(x int) int {
|
|
if x >= 0 { // $ Alert
|
|
return x
|
|
} else {
|
|
return x
|
|
}
|
|
}
|