This file contains 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
---------------------------------------- | |
Setup | |
---------------------------------------- | |
Building version 3.5.0-beta of Testcontainers (develop@99ff0056990accb2272441d33e27bd36d14d4b72) | |
======================================== | |
Clean | |
======================================== |
This file contains 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
type Animal = | |
| Cat | |
| Dog | |
| Horse | |
type AnimalSize = | |
| CatLarge | |
| DogSmall | |
| HorseMedium | |
// ^ changing this to Horse will result in a compile error on the last line |
This file contains 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
module AP = | |
let (|SC|) (i:int) = string i | |
let before = AP.``|SC|`` 1 | |
// Fantomas 4.6.0-alpha-004 | |
let after = AP.(|SC|) 2 | |
// Fantomas 4.6.1 |
This file contains 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
A guess assistant, not a real solver. |
This file contains 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
import Http exposing (..) | |
toErrString : Http.Error -> String | |
toErrString err = | |
case err of | |
BadUrl s -> | |
"Bad URL: " ++ s | |
Timeout -> | |
"Timeout" | |
NetworkError -> |
This file contains 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
#r "paket: | |
nuget Fake.Core.Target | |
nuget SSH.NET //" | |
#load "./.fake/build.fsx/intellisense.fsx" | |
module Ssh = | |
open Renci.SshNet | |
open Fake.Core |