From 6a8ffb8823e1bdca56b8058e496479b65d0a6f6f Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 21 May 2020 13:49:01 +0200 Subject: Rush00 in Rust??? --- rush00/ex02/main.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 rush00/ex02/main.rs (limited to 'rush00/ex02/main.rs') diff --git a/rush00/ex02/main.rs b/rush00/ex02/main.rs new file mode 100644 index 0000000..3a14d63 --- /dev/null +++ b/rush00/ex02/main.rs @@ -0,0 +1,17 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* main.rs :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: charles +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/05/21 12:35:44 by charles #+# #+# */ +/* Updated: 2020/05/21 13:38:07 by charles ### ########.fr */ +/* */ +/* ************************************************************************** */ + +mod rush02; + +fn main() { + rush02::rush(5, 5); +} -- cgit