use v6-alpha; use Test; use v6; use Test; plan 1; # P38 (*) Compare the two methods of calculating Euler's totient function. # # Use the solutions of problems P34 and P37 to compare the algorithms. Take the # number of logical inferences as a measure for efficiency. Try to calculate # phi(10090) as an example. if 1 { skip 1, "Test(s) not yet written: (*) Compare the two methods of calculating Euler's totient function."; } else { ok 1, "(*) Compare the two methods of calculating Euler's totient function."; }