mirror of
https://github.com/github/semantic.git
synced 2024-11-28 18:23:44 +03:00
17 lines
272 B
Go
17 lines
272 B
Go
package main
|
|
|
|
func main() {}
|
|
|
|
func (self Person) Equals(other Person) bool {}
|
|
|
|
func (p *Point) Length() float64 {
|
|
return math.Sqrt(p.x * p.x + p.y * p.y)
|
|
}
|
|
|
|
func (p *Point) Scale(factor float64) {
|
|
p.x *= factor
|
|
p.y *= factor
|
|
}
|
|
|
|
func (f *Field) Alive(x, y int) bool { }
|