Skip to content
Permalink
v2.1.6
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
David Verdeguer Add multi-language-repo
Latest commit 583f8a9 May 8, 2020 History
0 contributors

Users who have contributed to this file

12 lines (10 sloc) 209 Bytes
using System;
namespace HelloWorldApp {
class Geeks {
static void Main(string[] args) {
if (true) {
Console.WriteLine("Hello World!");
}
}
}
}