Advertisement
Guest User

Main

a guest
Jan 28th, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. public class Main {
  2. public static void main(String[] args) {
  3. ArList<String> b = new ArList<>();
  4. b.add("Лимузин");
  5.  
  6. for (String v : b) {
  7. System.out.println(v);
  8. }
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement