// this hack is gross final String[] val = new String[1]; Callable func = () -> val[0] = "Hello"; func.call(); System.out.print(val[0]);