Skip to content

Instantly share code, notes, and snippets.

@jasondown
Created March 12, 2019 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasondown/9ac83720cfc9db0fef2012327d699084 to your computer and use it in GitHub Desktop.
Save jasondown/9ac83720cfc9db0fef2012327d699084 to your computer and use it in GitHub Desktop.
// Remains unchanged
// Module ->string
let goto : Goto = fun m -> sprintf "GOTO %s" <| m.ToString()
// Replaced by next two (new) moves
// SampleData -> string
//let collect:Collect = fun s -> sprintf "CONNECT %i" <| s.Id
// New move
// Rank -> String
let collectNewSample : CollectNewSample = fun r -> sprintf "CONNECT %i" <| r
// New move
// DiagnosedSampleData -> string
let collectCloudSample : CollectCloudSample = fun s -> sprintf "CONNECT %i" <| s.Id
// New move
// UndiagnosedSampleData -> string
let anaylze : Analyze = fun s -> sprintf "CONNECT %i" <| s.Id
// Remains unchanged
// MoleculeType -> string
let gather : Gather = fun m -> sprintf "CONNECT %s" <| m.ToString()
// Changed SampleData to DiagnosedSampleData
// DiagnosedSampleData -> string
let produce : Produce = fun s -> sprintf "CONNECT %i" s.Id
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment