Kotlin - WIP Meetup

C# - Hello World and Leap Year Complete
This commit is contained in:
Anthony C 2017-08-12 00:22:44 -04:00
parent ca83d52ea2
commit 0aedeb08a0
4 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,9 @@
using System;
public static class HelloWorld
{
public static string Hello()
{
return "Hello, World!";
}
}

7
csharp/leap/Leap.cs Normal file
View file

@ -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));
}
}

1
kotlin/meetup/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
# Created by .ignore support plugin (hsz.mobi)

View file

@ -0,0 +1,2 @@
class Meetup {
}