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 multi line comment. // Bla bla bla /* * Do not use /*this */style for multi line comments. This style * style of comment interferes with commenting out * blocks of * code with /* */, and also makes code comments harder * to distinguish from Scala doc / Java doc comments. */ /** * Do not use scala doc style for inline comments. */ |
...