Skip to content

Instantly share code, notes, and snippets.

View c-joly's full-sized avatar

Cyril Joly c-joly

  • Mines ParisTech
  • Paris
View GitHub Profile
@c-joly
c-joly / Point.java
Created June 10, 2022 07:23
Un exemple simple de classe Point vu en cours
public class Point {
public final Double x ;
public final Double y ;
public double getX(){
return this.x ;
}
public double getY(){
return this.y ;