I very frequently use $int aka $floor in my math, and it's very distracting when I have to nest $calc($floor($calc())) for simple calculations. Would you consider adding the common floor-divide (integer divide) operator // to $calc and /var?

Examples:

$calc($ctime // 3600)
same as: $floor($calc($ctime / 1000))

/var %second = $ticks // 1000
same as: /var %second = $floor($calc($ticks / 1000))

distance = $calc(%x // 50 + %y // 50)
same as: $calc($floor($calc(%x / 50)) + $floor($calc(%y / 50)))


Thank you.


Well. At least I won lunch.
Good philosophy, see good in bad, I like!