Move files from HW03 to root directory

This commit is contained in:
2026-05-01 14:13:20 +03:30
parent a41ad2834a
commit 36b45a17dc
4 changed files with 59 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
package org.example;
public class Main {
public static void main(String[] args) {
System.out.println("Welcome to Movie App!");
Movie movie = new Movie("Inception", "Christopher Nolan", 2010, 8.8);
System.out.println(movie.getTitle());
}
}