Imports System.Collections.Generic
Imports System.Globalization
Namespace HelloWorldMvcApp
Public Class HomeController
Inherits System.Web.Mvc.Controller
Function Index() As ActionResult
Dim france = CultureInfo.GetCultureInfo("fr-FR")
Return View(New SampleViewModel With { .Sucre = "soviet" })
Return "lol c'est le caca au kolkoze"
Private Shared _rnd As Random = New Random()
Private Shared _db As List(Of String) = New List(Of String) From {"Yes", "No", "Definitely, yes", "I don't know", "Looks like, yes"}