Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- impl Point {
- // Getter for x, public
- pub fn x(& self) -> f64 {
- self.x
- }
- }
- impl Point {
- // Getter for y, public
- pub fn y(& self) -> f64 {
- self.y
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement