Last active
February 26, 2021 20:18
-
-
Save deanwampler/7205aa985d9b439530c76783c69bad9d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
import scala.util.* // Instead of _ | |
import scala.concurrent.{given, *} // Everything in concurrent, including givens | |
import java.util.Queue as JQueue // "as" replaces => and no braces needed for one import | |
import java.util.{HashMap as _, *} // Need {} for a list. Still use _ to hide HashMap |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment