Created
January 21, 2018 21:38
-
-
Save conectado/cf6acd3ef4752110c556a5c3ac1a3359 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Threading.Tasks; | |
using Microsoft.AspNetCore.Mvc; | |
namespace yourComplaint.Controllers | |
{ | |
public class HomeController : Controller | |
{ | |
public string Index() | |
{ | |
return "Hello World! :)"; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment