Kotlin - WIP Meetup
C# - Hello World and Leap Year Complete
This commit is contained in:
parent
ca83d52ea2
commit
0aedeb08a0
4 changed files with 19 additions and 0 deletions
9
csharp/hello-world/HelloWorld.cs
Normal file
9
csharp/hello-world/HelloWorld.cs
Normal 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
7
csharp/leap/Leap.cs
Normal 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
1
kotlin/meetup/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
# Created by .ignore support plugin (hsz.mobi)
|
2
kotlin/meetup/src/main/kotlin/Meetup.kt
Normal file
2
kotlin/meetup/src/main/kotlin/Meetup.kt
Normal file
|
@ -0,0 +1,2 @@
|
|||
class Meetup {
|
||||
}
|
Loading…
Add table
Reference in a new issue