How to create a 2D point data structure with two floating-point numbers in Go

1 Answer

0 votes
package main

import "fmt"

type Point struct {
    x, y float64
}

func main() {
    p := Point{x: 8.99, y: 9.72}

    fmt.Println(p.x)
    fmt.Println(p.y)
}




/*
run:

8.99
9.72

*/

 



answered Dec 26, 2022 by avibootz
...