Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. Command<T> c = createCommand();
  2. Higher<Command.µ,T> hktCommand = c;
  3. Higher<Command.µ,T> hktCommand = createCommand();
  4.  
  5. Output<T> o = createOutput();
  6. Higher<Output.µ,T> hktOutput = o;
  7. Higher<Output.µ,T> hktOutput = createOutput();
  8.  
  9. Done<T> d = createOutput();
  10. Higher<Done.µ,T> hktDone = d;
  11. Higher<Done.µ,T> hktDone = createDone();
  12.  
  13. Bell<T> b = createBell();
  14. Higher<Bell.µ,T> hktBell = d;
  15. Higher<Bell.µ,T> hktBell = createBell();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement