Skip to content

Instantly share code, notes, and snippets.

@nherbaut
Created September 14, 2023 09:03
Show Gist options
  • Select an option

  • Save nherbaut/41f942c6cc55063ca5886211370e1d69 to your computer and use it in GitHub Desktop.

Select an option

Save nherbaut/41f942c6cc55063ca5886211370e1d69 to your computer and use it in GitHub Desktop.
Created from MIAGE Code Crafting

Description

Teaching Goals

Hints

public class Voiture{
int vitesse;
public Voiture(int v){
vitesse=v;
}
public static void main(String ...args){
Voiture v = new Voiture(30);
Voiture vv = v;
System.out.println(v==vv);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment