DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Code Block | ||
|---|---|---|
| ||
// 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).
...