-
Notifications
You must be signed in to change notification settings - Fork 326
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Don't use System.out.print
in Standard.Test
- use IO
!
#10028
Comments
This will require a new builtin. @JaroslavTulach |
Jaroslav Tulach reports a new STANDUP for yesterday (2024-08-22): Progress: - IO.print: 5f7f8c8
|
Jaroslav Tulach reports a new STANDUP for yesterday (2024-08-23): Progress: - IO.print needs a lot of test changes: bae5b28
|
To invoke
print
we have to includejava.io.PrintStream
in the list of classes needed for reflective access - see #9997 (comment)If
print
(instead ofprintln
) is needed, we should expose it fromIO
. For example:which one could invoke as
IO.println nl="" "some text"
.Originally posted by @JaroslavTulach in #9997 (comment)
The text was updated successfully, but these errors were encountered: