Last active
October 12, 2023 16:28
-
-
Save windymelt/017956eb35ea7d693af5655570dd0e24 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//> using scala 3.3.0 | |
import java.awt.Desktop | |
import java.net.URI | |
if (Desktop.isDesktopSupported) { | |
Desktop.getDesktop.browse(new URI("https://scala-cli.virtuslab.org/")) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment