TwoStarImports.java, the java.base export count in output/04, the extra LocalDate line in src/imports.jsh and regenerated transcripts. Additive commit. Co-Authored-By: Claude Sonnet 5 <[email protected]> Claude-Session: https://claude.ai/code/session_01TF9JWFvJSNm6HVzswzZU5a
29 lines
661 B
Plaintext
29 lines
661 B
Plaintext
$ jshell --feedback concise src/imports.jsh (21.0.10+7-Ubuntu-124.04)
|
|
import java.io.*
|
|
import java.math.*
|
|
import java.net.*
|
|
import java.nio.file.*
|
|
import java.util.*
|
|
import java.util.concurrent.*
|
|
import java.util.function.*
|
|
import java.util.prefs.*
|
|
import java.util.regex.*
|
|
import java.util.stream.*
|
|
[2, 4]
|
|
Error:
|
|
cannot find symbol
|
|
symbol: variable LocalDate
|
|
System.out.println(LocalDate.of(2026, 9, 15))
|
|
^-------^
|
|
|
|
$ jshell --feedback concise src/imports.jsh (25.0.4.1+1-LTS)
|
|
import java.base
|
|
[2, 4]
|
|
2026-09-15
|
|
|
|
$ jshell --feedback concise src/imports.jsh (27+35)
|
|
import java.base
|
|
[2, 4]
|
|
2026-09-15
|
|
|