Skip to content

Instantly share code, notes, and snippets.

@SaBenBurra
Created October 10, 2022 13:30
Show Gist options
  • Save SaBenBurra/01e9798c674034f2b95bc8d377e76826 to your computer and use it in GitHub Desktop.
Save SaBenBurra/01e9798c674034f2b95bc8d377e76826 to your computer and use it in GitHub Desktop.
public class Main {
public static void main(String[] args) {
int number1 = 5;
int number2 = 10;
number1 = number2;
number2 = 15;
System.out.println(number1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment