Merge pull request #217 from gkanishk/master

Create HelloWOrld.cs
This commit is contained in:
Josh Cunningham 2018-10-09 08:28:01 -07:00 committed by GitHub
commit 819e42f08a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 0 deletions

View File

@ -842,6 +842,12 @@ Please note that this project is released with a [Code of Conduct](CODE_OF_CONDU
- Loves coding and dancing.
- [![github-alt][github-img]](https://github.com/KanchanThareja)
### Kanishk Gupta
- Student,At Chandigarh University , tech enthusiast.
- Currently, I am Campus Ambassador at HackerEarth.
- I am love to take challenges!!
- [![github-alt][github-img]](https://github.com/gkanishk)
### Karen Geerts
- I work for REA (https://www.rea-group.com/IRM/content/default.aspx) and am a junior Ruby developer.

10
code/HelloWOrld.cs Normal file
View File

@ -0,0 +1,10 @@
// Hello World! program C#
namespace HelloWorld
{
class Hello {
static void Main(string[] args)
{
System.Console.WriteLine("Hello HacktoberFest!");
}
}
}