From 4889143b0a1955f1b40c6941b87dd9bf0d1898f5 Mon Sep 17 00:00:00 2001 From: "konstantin.ovsyannikov" Date: Mon, 4 Dec 2023 19:37:06 +0300 Subject: [PATCH] fix: returned entry point to succesful build --- HW02LAZY/LAZY/Lazy.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/HW02LAZY/LAZY/Lazy.cs b/HW02LAZY/LAZY/Lazy.cs index 22d37e6..dd17ee8 100644 --- a/HW02LAZY/LAZY/Lazy.cs +++ b/HW02LAZY/LAZY/Lazy.cs @@ -108,3 +108,11 @@ public static int Calculation() return ++_counterValue; } } + +internal class MyLazy +{ + internal static void Main() + { + + } +}