aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Wang2021-04-18 21:49:17 -0500
committerGitHub2021-04-18 21:49:17 -0500
commit732010e70b03286508657a46e3312458f1bd2fa5 (patch)
tree0dcacb7631db6cb04492977775b32a11cc2e8a34
parent54129ba82f3235dc49c7329d7dab0387bcd02a50 (diff)
Update test.rs
-rw-r--r--test.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/test.rs b/test.rs
index 8e2c72a..da6a933 100644
--- a/test.rs
+++ b/test.rs
@@ -1,3 +1,5 @@
+// Rust
+
fn gcd(a : i32, b : i32) -> i32 {
if b > 0 {
return gcd(b, a % b);