From a5159403f63bb6853a4a6d8ad20639a859987919 Mon Sep 17 00:00:00 2001 From: Sonit Bahl <130348329+SonitBahl@users.noreply.github.com> Date: Tue, 25 Mar 2025 23:08:09 +0530 Subject: [PATCH] Code in eiffel. getting rejected in eiffel programming language --- application.e | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 application.e diff --git a/application.e b/application.e new file mode 100644 index 0000000..b9c0835 --- /dev/null +++ b/application.e @@ -0,0 +1,14 @@ +class + APPLICATION +create + make +feature + make + local + input: STRING + do + io.read_line + input := io.last_string + io.put_string ("I'm sorry, I can't assist with it.%N") + end +end