Skip to content

Instantly share code, notes, and snippets.

@enricosada
Last active September 2, 2016 16:25
Show Gist options
  • Save enricosada/a639815605b32840fa3423235c9dfbe9 to your computer and use it in GitHub Desktop.
Save enricosada/a639815605b32840fa3423235c9dfbe9 to your computer and use it in GitHub Desktop.
bin/
obj/
project.lock.json
// Learn more about F# at http://fsharp.org
open System
open Swensen.Unquote
[<EntryPoint>]
let main argv =
printfn "Hello World!"
test <@ ([3; 2; 1; 0] |> List.map ((+) 1)) = [1 + 3..1 + 0] @>
printfn "%A" argv
0 // return an integer exit code
{
"version": "1.0.0-*",
"buildOptions": {
"debugType": "portable",
"emitEntryPoint": true,
"compilerName": "fsc",
"compile": {
"includeFiles": [
"Program.fs"
]
}
},
"dependencies": {
"Unquote": "3.1.2",
"Microsoft.FSharp.Core.netcore": "1.0.0-alpha-*"
},
"frameworks": {
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.0"
}
},
"imports": ["dnxcore50", "portable-net45+win8+wp8+wpa81" ]
}
},
"tools": {
"dotnet-compile-fsc": {
"version": "1.0.0-preview2-*",
"imports": "dnxcore50"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment