From 156a180c7782d80f545dd712e7b896eddcb201bf Mon Sep 17 00:00:00 2001 From: = <=> Date: Sat, 6 Jun 2020 20:13:55 +0530 Subject: [PATCH] Just for check --- a.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 a.java diff --git a/a.java b/a.java new file mode 100644 index 0000000..49af90a --- /dev/null +++ b/a.java @@ -0,0 +1,16 @@ +class A +{ +public static void main(String[] args) { +try{ +System.out.println("i"); +} +catch (Exception e) +{ + System.out.println("e"); +} +finally{ + System.out.println("!"); +} +} + +}