I'd suggest using ->, since most programming languages use it =)

Code:
class classname {
 init {
  private var %x = $1
 }
 public alias test {
  return $calc(%x - $1)
 }
}
alias useclass {
 var @x = $classname(1234), @y = $classname(4321)
 echo -a @x->test(4) - @y->test(1)
 set @f $classname(123)
.timer 1 5 ehco -a @!f->test $eval(|,1) unset @f
}

;Output:
[0] 1230 - 4320
[1] 123

(number enclosed in []s is a timestamp, from the start of /useclass.)

There are many different ways of doing it, but i'm certain this wouldn't be the best way to make then =)


Those who can, cannot. Those who cannot, can.