Yes it is.

Code:
  'These two line are the same
  X = Y \ Z
  X = Int(Y / Z)
People tend to miss it though, so I find that I have to put comments in my coding to point out that I am using "\" instead of "/". Most of the time it's simpler to just use the Int function, to avoid confusion.

Shrog