Skip to content

Commit edbe9b3

Browse files
author
someody42
committed
Implementation of changes suggested by c252
1 parent be60d04 commit edbe9b3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: contents/euclidean_algorithm/code/d/euclidean_algorithm.d

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,6 @@ void main()
3737
auto check1 = euclid_mod(64 * 67, 64 * 81);
3838
auto check2 = euclid_sub(128 * 12, 128 * 77);
3939

40-
writeln(check1,'\n',check2);
40+
writeln("Modulus-based euclidean algorithm result: ", check1);
41+
writeln("Subtraction-based euclidean algorithm result: ", check2);
4142
}

0 commit comments

Comments
 (0)