From 0aedeb08a07598dcbd74f43dd9112226c23485e4 Mon Sep 17 00:00:00 2001 From: Anthony C Date: Sat, 12 Aug 2017 00:22:44 -0400 Subject: [PATCH] Kotlin - WIP Meetup C# - Hello World and Leap Year Complete --- csharp/hello-world/HelloWorld.cs | 9 +++++++++ csharp/leap/Leap.cs | 7 +++++++ kotlin/meetup/.gitignore | 1 + kotlin/meetup/src/main/kotlin/Meetup.kt | 2 ++ 4 files changed, 19 insertions(+) create mode 100644 csharp/hello-world/HelloWorld.cs create mode 100644 csharp/leap/Leap.cs create mode 100644 kotlin/meetup/.gitignore create mode 100644 kotlin/meetup/src/main/kotlin/Meetup.kt diff --git a/csharp/hello-world/HelloWorld.cs b/csharp/hello-world/HelloWorld.cs new file mode 100644 index 0000000..33bff0d --- /dev/null +++ b/csharp/hello-world/HelloWorld.cs @@ -0,0 +1,9 @@ +using System; + +public static class HelloWorld +{ + public static string Hello() + { + return "Hello, World!"; + } +} diff --git a/csharp/leap/Leap.cs b/csharp/leap/Leap.cs new file mode 100644 index 0000000..36b3de2 --- /dev/null +++ b/csharp/leap/Leap.cs @@ -0,0 +1,7 @@ +using System; + +public static class Leap { + public static bool IsLeapYear(int year) { + return (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)); + } +} \ No newline at end of file diff --git a/kotlin/meetup/.gitignore b/kotlin/meetup/.gitignore new file mode 100644 index 0000000..bfa6a22 --- /dev/null +++ b/kotlin/meetup/.gitignore @@ -0,0 +1 @@ +# Created by .ignore support plugin (hsz.mobi) diff --git a/kotlin/meetup/src/main/kotlin/Meetup.kt b/kotlin/meetup/src/main/kotlin/Meetup.kt new file mode 100644 index 0000000..3191aae --- /dev/null +++ b/kotlin/meetup/src/main/kotlin/Meetup.kt @@ -0,0 +1,2 @@ +class Meetup { +} \ No newline at end of file