Mercurial
Mercurial
>
hg
>
pep-material
/ comparison
summary
|
shortlog
|
changelog
|
graph
|
tags
|
bookmarks
|
branches
|
files
|
changeset
|
file
|
latest
|
revisions
|
annotate
|
diff
| comparison |
raw
|
help
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
core_testing1/collatz_test1.scala
changeset 399
d04b8569f124
parent 345
69b39df6ad4d
child 469
ed7a9ea24f71
equal
deleted
inserted
replaced
398:7fc6fa95519d
399:d04b8569f124
1
2
import C1._
3
4
assert(collatz(1) == 0)
5
assert(collatz(6) == 8)
6
assert(collatz(9) == 19)
7
8