Skip to content

Instantly share code, notes, and snippets.

@ijansch
Created March 15, 2017 09:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ijansch/4aa0f40dfb27c0018bf1e94bfc685395 to your computer and use it in GitHub Desktop.
Save ijansch/4aa0f40dfb27c0018bf1e94bfc685395 to your computer and use it in GitHub Desktop.
package nl.soundbites.deepdive;
import rx.Observable;
/**
* Copyright Drummingwithneedles
* Created by Robert van Loghem on 15/03/2017.
*/
public class Playground {
public static void main(String[] args) {
Observable
.just("Hello", "deepdive")
.subscribe(System.out::println);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment