From fffbeff7c9f254c413cc06a3999425b6a5060164 Mon Sep 17 00:00:00 2001 From: Aleksey Rakov Date: Wed, 4 Sep 2024 20:58:29 +0200 Subject: [PATCH] Update Elena.elena Changing the code to be compatible with ELENA 6.x --- e/Elena.elena | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/e/Elena.elena b/e/Elena.elena index 92fcb8ce1..58aad5d02 100644 --- a/e/Elena.elena +++ b/e/Elena.elena @@ -1,4 +1,4 @@ -public program -[ - console writeLine("Hello World"). -] +public program() +{ + console.writeLine("Hello World") +}