주석정리

This commit is contained in:
blacktoast 2021-09-30 07:26:45 +00:00
parent 9afbc03f68
commit c31c5c1fb2
11 changed files with 0 additions and 11 deletions

View File

@ -1,7 +1,6 @@
// move_semantics1.rs
// Make me compile! Execute `rustlings hint move_semantics1` for hints :)
// I AM NOT DONE
fn main() {
let vec0 = Vec::new();

View File

@ -2,7 +2,6 @@
// Make me compile without changing line 13!
// Execute `rustlings hint move_semantics2` for hints :)
// I AM NOT DONE
fn main() {
let vec0 = Vec::new();

View File

@ -3,7 +3,6 @@
// (no lines with multiple semicolons necessary!)
// Execute `rustlings hint move_semantics3` for hints :)
// I AM NOT DONE
fn main() {
let vec0 = Vec::new();

View File

@ -4,7 +4,6 @@
// freshly created vector from fill_vec to its caller.
// Execute `rustlings hint move_semantics4` for hints!
// I AM NOT DONE
fn main() {

View File

@ -3,7 +3,6 @@
// adding, changing or removing any of them.
// Execute `rustlings hint move_semantics5` for hints :)
// I AM NOT DONE
fn main() {
let mut x = 100;

View File

@ -6,7 +6,6 @@
// 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.
// I AM NOT DONE
fn main() {
let x = 7;

View File

@ -1,7 +1,6 @@
// variables2.rs
// Make me compile! Execute the command `rustlings hint variables2` if you want a hint :)
// I AM NOT DONE
fn main() {
let x;

View File

@ -1,7 +1,6 @@
// variables3.rs
// Make me compile! Execute the command `rustlings hint variables3` if you want a hint :)
// I AM NOT DONE
fn main() {
let mut x = 3;

View File

@ -1,7 +1,6 @@
// variables4.rs
// Make me compile! Execute the command `rustlings hint variables4` if you want a hint :)
// I AM NOT DONE
fn main() {
let x: i32=50;

View File

@ -1,7 +1,6 @@
// variables5.rs
// Make me compile! Execute the command `rustlings hint variables5` if you want a hint :)
// I AM NOT DONE
fn main() {
let number = "T-H-R-E-E"; // don't change this line

View File

@ -2,7 +2,6 @@
// Make me compile! Execute the command `rustlings hint variables6` if you want a hint :)
/*
I AM NOT DONE
*/
const NUMBER:i32 =1;