From 2d3e8f33939011461ad7974b0055990be7d8ac85 Mon Sep 17 00:00:00 2001 From: Mehrdad Shirvani Date: Thu, 16 Apr 2026 13:17:40 +0330 Subject: [PATCH] add intelliJ project --- .idea/WS-01-intro-to-oop.iml | 4 +++- .idea/misc.xml | 2 +- src/ClassExamples/Example01.java | 9 +++++++++ 3 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 src/ClassExamples/Example01.java diff --git a/.idea/WS-01-intro-to-oop.iml b/.idea/WS-01-intro-to-oop.iml index d6ebd48..c90834f 100644 --- a/.idea/WS-01-intro-to-oop.iml +++ b/.idea/WS-01-intro-to-oop.iml @@ -2,7 +2,9 @@ - + + + diff --git a/.idea/misc.xml b/.idea/misc.xml index 4b151ab..a20905f 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,6 +1,6 @@ - + \ No newline at end of file diff --git a/src/ClassExamples/Example01.java b/src/ClassExamples/Example01.java new file mode 100644 index 0000000..f1869cf --- /dev/null +++ b/src/ClassExamples/Example01.java @@ -0,0 +1,9 @@ +package ClassExamples; + +public class Example01 +{ + public static void main(String[] args) + { + System.out.println("Hi!"); + } +} \ No newline at end of file