13 lines
177 B
Go
13 lines
177 B
Go
//args: -Egodot
|
|
package p
|
|
|
|
/*
|
|
This comment won't be checked in default mode
|
|
*/
|
|
|
|
// This comment will be fixed.
|
|
func godot(a, b int) int {
|
|
// Nothing to do here
|
|
return a + b
|
|
}
|