Skip to content

Instantly share code, notes, and snippets.

module Main exposing (..)
import Html exposing (..)
import Html.Events exposing (..)
import Debug exposing (..)
type alias Model =
{ fullName : String
, firstName : String
module Main exposing (..)
import Html exposing (..)
import Html.Events exposing (..)
type alias Model =
{ fullName : String
, firstName : String
, lastName : String
module Main exposing (..)
--- Import part
import Html exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (..)
-- Model part
module Main exposing (..)
import Html exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (..)
type alias Model =
{ name : String
, inputdata : String
@ksunair
ksunair / DebuggerShim.cs
Created February 22, 2012 20:12
NSpec Debugger Shim
using NUnit.Framework;
using NSpec.Domain;
using System.Reflection;
using NSpec;
using NSpec.Domain.Formatters;
namespace TestEngine
{
[TestFixture]