14 July 2025 and some saved old ones added.

This commit is contained in:
Halhadus 2025-07-14 12:07:12 +03:00
parent 62df64cead
commit 4812591cef
7 changed files with 233 additions and 0 deletions

8
14july2025/Main.java Normal file
View file

@ -0,0 +1,8 @@
public class Main {
public static void main(String[] args) {
System.out.println("Java BlackJack");
Wallet kullanici = new Wallet("Mahmut Tuncer", "1000");
Game oyun = new Game(kullanici);
oyun.baslat();
}
}