From 5e31032955bf96987948b597e7a696262cea8680 Mon Sep 17 00:00:00 2001 From: Philippe Zwietering Date: Sun, 29 May 2022 23:41:25 +0200 Subject: [PATCH] Added base.rs for basic rust file --- base.rs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 base.rs diff --git a/base.rs b/base.rs new file mode 100644 index 0000000..b206056 --- /dev/null +++ b/base.rs @@ -0,0 +1,15 @@ +use proconio::input; + +fn solve(tc: u32){ + +} + +fn main() { + input!{ + t: u32, + }; + + for tc in 1..=t { + solve(tc); + } +} \ No newline at end of file