From 0d54d631d5bf3024446aa67f296f2b5751f0fcad Mon Sep 17 00:00:00 2001 From: Eshwar1324 Date: Wed, 27 Mar 2024 12:49:24 +0530 Subject: [PATCH] semicolon was added --- Program | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program b/Program index d3670de..65f1af4 100644 --- a/Program +++ b/Program @@ -25,7 +25,7 @@ class Main { // to a Child object Child's show() // is called. This is called RUN TIME // POLYMORPHISM. - Parent obj2 = new Child() + Parent obj2 = new Child(); obj.show(); } }