Last login: Mon Feb 8 13:01:34 on ttys004 The default interactive shell is now zsh. To update your account to use zsh, please run `chsh -s /bin/zsh`. For more details, please visit https://support.apple.com/kb/HT208050. (base) MAC:Mon Feb 08:13:38:algorithms> jshell | Welcome to JShell -- Version 15.0.1 | For an introduction type: /help intro jshell> /import | 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.* jshell> /vars jshell> String s = "hello" s ==> "hello" jshell> String t = "innuendo" t ==> "innuendo" jshell> s.compareTo(t) $3 ==> -1 jshell> s.compareTo(t) < 0 $4 ==> true jshell> s.compareTo(t) >=0 $5 ==> false jshell>