summaryrefslogtreecommitdiff
path: root/control/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'control/src/main.rs')
-rwxr-xr-xcontrol/src/main.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/control/src/main.rs b/control/src/main.rs
new file mode 100755
index 0000000..0b74683
--- /dev/null
+++ b/control/src/main.rs
@@ -0,0 +1,7 @@
+fn main() {
+
+ for number in (1..1000).rev() {
+ println!("{}", number);
+ }
+}
+