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_f;
public class TestingThreadInterferences {
public static void main(String[] args) {
// shared account object
Account account = new Account();
(new Thread(new Customer("Damien", account))).start();
(new Thread(new Customer("Hélène", account))).start();
}
}