Comments for https://horstmann.com/unblog/2022-07-20/index.html
By System @system
Comments for: https://horstmann.com/unblog/2022-07-20/index.html
- BBrad Cupit @bradcupit
For Inflationary Expressions you can use a single char:
jshell> var x = ' '; x ==> ' ' jshell> /vars | char x = ' '
char is 4x longer than the single character passed in 😝
- CCay Horstmann @cayhorstmann
But
' '
is three characters. You have to count the quotation marks.