renamed folders

This commit is contained in:
2024-12-10 14:46:16 +01:00
parent 6111228c02
commit 237c35c6f7
24 changed files with 24 additions and 24 deletions

View File

@@ -0,0 +1,10 @@
package exercises.ex_g;
public class TestingSynchronizedStatements {
public static void main(String[] args) {
// shared account object
Account account = new Account();
(new Thread(new BankEmployee("Mrs Fournier", account))).start();
(new Thread(new BankEmployee("Mr Schmidhalter", account))).start();
}
}