Facebook
From Baby Bee, 9 Years ago, written in Groovy.
Embed
Download Paste or View Raw
Hits: 492
  1. class DelegateClass {
  2.     @Delegate
  3.     List<String> list = new ArrayList<>();
  4.  
  5.     public static void main(String[] args) {
  6.         List<String> strings = new DelegateClass()
  7.     }
  8. }
  9.