Skip to content

Instantly share code, notes, and snippets.

@conectado
Created January 21, 2018 21:38
Show Gist options
  • Save conectado/cf6acd3ef4752110c556a5c3ac1a3359 to your computer and use it in GitHub Desktop.
Save conectado/cf6acd3ef4752110c556a5c3ac1a3359 to your computer and use it in GitHub Desktop.
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