Revert "BAEL-4134"

This commit is contained in:
Loredana Crusoveanu
2020-07-07 14:18:10 +03:00
committed by GitHub
parent 4a35b97bad
commit 7ab2f437ee
2466 changed files with 9477 additions and 479200 deletions
@@ -0,0 +1,11 @@
package com.baeldung.quasar;
import co.paralleluniverse.fibers.Fiber;
public class App {
public static void main(String[] args) {
new Fiber<Void>(() -> {
System.out.println("Inside fiber coroutine...");
}).start();
}
}