-6

What does a double division sign do?

d8> 3//2
3
d8> 3//10
3
d8> 10//3
10
d8> 1000//6
1000

Why does it just return the dividend every time?

goodcow
  • 4,495
  • 6
  • 33
  • 52

1 Answers1

9

Nothing. It's a line comment. It disregards the // and everything after it.

Joseph
  • 117,725
  • 30
  • 181
  • 234
  • 6
    @goodcow We all are at some point in time. And we become awesome at another point as well. :D – Joseph Jun 24 '14 at 15:59