Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/poltanek/javapractice

Bunch of Java Programs I created for learning purposes from simple programs towards creating some low level programs.
https://github.com/poltanek/javapractice

java practice swing

Last synced: 19 days ago
JSON representation

Bunch of Java Programs I created for learning purposes from simple programs towards creating some low level programs.

Awesome Lists containing this project

README

        

![image](https://github.com/user-attachments/assets/54e4c592-28f5-48e6-92d8-df6f3b72d813)

![image](https://github.com/user-attachments/assets/8040f4d6-3530-498a-a091-7740408a1083)

![image](https://github.com/user-attachments/assets/7ac6ac03-5520-44e6-91be-a15acd135355)

![image](https://github.com/user-attachments/assets/ad7b1609-ba71-45f7-907b-f014554a45cf)

```
Point point1 = new Point(x1, y1);
Point point2 = point1;
point1.x = 5;

System.out.println(point2.x);
```