Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagescala
// This is a short, single line comment
 
/* This is a long single line comment, where this style also works. */
 
/*
 * This is a multi line comment.
 * Bla bla bla
 */
 
/**
 * Do not use scala doc style /** .. */ in thisfor inline comments.
 */

 

Imports

Always import packages using absolute paths (e.g. scala.util.Random) instead of relative ones (e.g. util.Random).

...