Can anyone point me to an online Java compiler which runs the JDK on Windows? I only find Linux systems.
I would be particularly interested in what
java.nio.file.Path.of("a/b/c")
returns on a Windows system. My hunch is that it is the same as
java.nio.file.Path.of("a\\b\\c")
because the forward slash, afair, also works as a path separator. Or is the forward slash merely a no-go character like ':' and many others?




