Front page HelloWorld example does not work out of the box
See original GitHub issueLibrary version is follows:
<dependency>
<groupId>io.reactivex.rxjava2</groupId>
<artifactId>rxjava</artifactId>
<version>2.0.4</version>
</dependency>
Code is follows:
import io.reactivex.*;
public class HelloWorld {
public static void main(String[] args) {
Flowable.just("Hello world").subscribe(System.out::println);
}
}
error messge is follows:
Error:(12, 15) java: cannot access org.reactivestreams.Publisher class file for org.reactivestreams.Publisher not found
Issue Analytics
- State:
- Created 7 years ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
A modern 'Hello, World' program needs more than just code
Building a new React app with create-react-app requires 4304 directories and 28678 files. Obviously, doing this by hand leads to madness.
Read more >Hello, World! - Learn HTML - Free Interactive HTML Tutorial
Hello, World ! Welcome to Learn HTML, the easiest way to learn HTML & CSS online, interactively. Learning HTML & CSS is essential...
Read more >The box model - Learn web development | MDN
The CSS box model as a whole applies to block boxes and defines how the different parts of a box — margin, border,...
Read more >Angular Hello World: Creating Your First Angular Application
Angular is a full-fledged JavaScript framework and provides out-of-the-box solutions for server communication, routing within your application, ...
Read more >"Hello World!" for Microsoft Windows (The Java™ Tutorials ...
Examples and practices described in this page don't take advantage of ... public static void main(String[] args) { System.out.println("Hello World!
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Works for me:
Thank you very much! … had a typo…