And moreover, can I rely that JVM will not recompi...
# random
p
And moreover, can I rely that JVM will not recompile a lambda on a subsequent call giving it a different name? E.g. here:
Copy code
for (x in y) {
  runner.submit(() -> "Hello");
}