Guest User

Untitled

a guest
Nov 24th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. class Example {
  2. void run(AbstractCollectionFactory fac) {
  3. Collection c = fac.empty();
  4. c.add(3);
  5. c.add("hi");
  6. }
  7. }
Add Comment
Please, Sign In to add comment