Skip to content

Instantly share code, notes, and snippets.

@rch850
Created January 29, 2013 13:32
Show Gist options
  • Save rch850/4664265 to your computer and use it in GitHub Desktop.
Save rch850/4664265 to your computer and use it in GitHub Desktop.
Java 8 の lambda で遊んでる
public class LifeAtTwitter {
public static void main(String[] args) {
getTweets().forEach(tweet -> {
System.out.println(tweet);
});
}
static java.util.List<String> getTweets() {
return java.util.Arrays.asList("mukuri", "syussya", "meshi", "kitaku", "oyasu");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment