Java Thread Lambda

Thread t = new Thread(new Runnable() {
    public void run() {
        // your code here ...
    }
});
JulesG10