Update test.rs

This commit is contained in:
Anthony Wang 2021-04-18 21:49:17 -05:00 committed by GitHub
parent 54129ba82f
commit 732010e70b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,3 +1,5 @@
// Rust
fn gcd(a : i32, b : i32) -> i32 {
if b > 0 {
return gcd(b, a % b);