What is the correct was to define a constant such as Pi or the Golden Ratio in a Scala program?
As an example, in C# I can do this:
class Example
{
public readonly static Double GoldenRatio;
static Example ()
{
GoldenRatio = (1.0 + Math.Sqrt (5.0)) / 2.0;
}
}