Budgie syntax for static variables behaves almost identically to the member equivalents. Accessing them takes in the class name instead of an instance reference.
Additionally, static members may declare an initial value as a final parameter.
class start : AnglePrinter
static variable declare : private rightAlias string "right"
static variable declare : private rightAmount int 90
member function declare start : public PrintAngle string angle int
if start : { operation : angle (equal to) { static variable : private AnglePrinter rightAmount } }
return : { static variable : private AnglePrinter rightAlias }
if end
return : { string format : ("{0} degrees") angle int }
member function declare end
class end