You are browsing as a guest. Sign up (or log in) to start making projects!

1h 10m 14s logged

Import some

import names into unqualified co ntext

Before:

//import
import list;

//use
list::List<str> myList = list::newList();

After:

//import
import list::*;

//use
List<str> myList = newList();
0
26

Comments 0

No comments yet. Be the first!