Skip to content

Instantly share code, notes, and snippets.

@jasondown
Created December 30, 2018 06:38
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/7cd5596bd74d465ef8d3584396e0ca6a to your computer and use it in GitHub Desktop.
Save jasondown/7cd5596bd74d465ef8d3584396e0ca6a to your computer and use it in GitHub Desktop.
// SampleData -> string
let collect:Collect = fun s -> sprintf "CONNECT %i" <| s.Id
// MoleculeType -> string
let gather:Gather = fun m -> sprintf "CONNECT %s" <| m.ToString()
// SampleData -> string
let produce:Produce = fun s -> sprintf "CONNECT %i" s.Id
// Module -> string
let goto:Goto = fun m -> sprintf "GOTO %s" <| m.ToString()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment