diff options
author | Anthony Wang | 2021-04-18 21:49:17 -0500 |
---|---|---|
committer | GitHub | 2021-04-18 21:49:17 -0500 |
commit | 732010e70b03286508657a46e3312458f1bd2fa5 (patch) | |
tree | 0dcacb7631db6cb04492977775b32a11cc2e8a34 | |
parent | 54129ba82f3235dc49c7329d7dab0387bcd02a50 (diff) |
Update test.rs
-rw-r--r-- | test.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,3 +1,5 @@ +// Rust + fn gcd(a : i32, b : i32) -> i32 { if b > 0 { return gcd(b, a % b); |