summaryrefslogtreecommitdiff
path: root/exercises/00_intro
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-04-17 23:34:27 +0200
committermo8it <mo8it@proton.me>2024-04-17 23:34:27 +0200
commit2f810a4da67233716ad93e00afff6e8b260f4807 (patch)
treef5a33357141d25d08b6726910efe33f2338b9cdb /exercises/00_intro
parentcb9f1ac9ce3c834b0cca964b6809b74508f80b54 (diff)
Clean up and unify exercises
Diffstat (limited to 'exercises/00_intro')
-rw-r--r--exercises/00_intro/intro1.rs5
-rw-r--r--exercises/00_intro/intro2.rs5
2 files changed, 0 insertions, 10 deletions
diff --git a/exercises/00_intro/intro1.rs b/exercises/00_intro/intro1.rs
index 170d195..7000039 100644
--- a/exercises/00_intro/intro1.rs
+++ b/exercises/00_intro/intro1.rs
@@ -1,5 +1,3 @@
-// intro1.rs
-//
// We sometimes encourage you to keep trying things on a given exercise, even
// after you already figured it out. If you got everything working and feel
// ready for the next exercise, remove the `I AM NOT DONE` comment below.
@@ -8,9 +6,6 @@
// reloaded when you change one of the lines below! Try adding a `println!`
// line, or try changing what it outputs in your terminal. Try removing a
// semicolon and see what happens!
-//
-// Execute `rustlings hint intro1` or use the `hint` watch subcommand for a
-// hint.
fn main() {
println!("Hello and");
diff --git a/exercises/00_intro/intro2.rs b/exercises/00_intro/intro2.rs
index 84e0d75..c7a3ab2 100644
--- a/exercises/00_intro/intro2.rs
+++ b/exercises/00_intro/intro2.rs
@@ -1,9 +1,4 @@
-// intro2.rs
-//
// Make the code print a greeting to the world.
-//
-// Execute `rustlings hint intro2` or use the `hint` watch subcommand for a
-// hint.
fn main() {
printline!("Hello there!")