Last active
September 2, 2016 16:25
-
-
Save enricosada/a639815605b32840fa3423235c9dfbe9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
bin/ | |
obj/ | |
project.lock.json |
This file contains hidden or 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
// 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 |
This file contains hidden or 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
{ | |
"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