mirror of
https://github.com/github/codeql.git
synced 2026-03-05 15:16:47 +01:00
8 lines
90 B
C#
8 lines
90 B
C#
class Good
|
|
{
|
|
public int Max(int a, int b)
|
|
{
|
|
return a > b ? a : b;
|
|
}
|
|
}
|