From dce1987ad56704628ea89772354cb923f704212d Mon Sep 17 00:00:00 2001 From: maurobernal Date: Fri, 26 Apr 2024 18:45:30 -0300 Subject: [PATCH 1/2] feat:MB:add class test.cs include static method for helloworld --- src/Web/Test.cs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/Web/Test.cs diff --git a/src/Web/Test.cs b/src/Web/Test.cs new file mode 100644 index 0000000..f069916 --- /dev/null +++ b/src/Web/Test.cs @@ -0,0 +1,6 @@ +namespace ca.Web; + +public static class Test +{ + public static void HelloWorld() => Console.WriteLine("Hola mundo"); +} From 9cfe979e6ff9fce2f3eb271e1336319228c99fd5 Mon Sep 17 00:00:00 2001 From: maurobernal Date: Fri, 26 Apr 2024 18:52:19 -0300 Subject: [PATCH 2/2] fix:MB: change to english transalate from spanish --- src/Web/Test.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Web/Test.cs b/src/Web/Test.cs index f069916..86264cd 100644 --- a/src/Web/Test.cs +++ b/src/Web/Test.cs @@ -2,5 +2,5 @@ public static class Test { - public static void HelloWorld() => Console.WriteLine("Hola mundo"); + public static void HelloWorld() => Console.WriteLine("Hello world!!!"); }