what am i doing pepeW

This commit is contained in:
Haru Yuumei 2023-10-24 09:46:55 -03:00
parent 5d1bf4f879
commit 52417c81c9
35 changed files with 46 additions and 7 deletions

37
.gitignore vendored
View file

@ -0,0 +1,37 @@
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
# Logs and databases #
######################
*.log
*.sql
*.sqlite
# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

8
src/HelloWorld.rs Normal file
View file

@ -0,0 +1,8 @@
fn main ()
{
println!("Hello World");
}
fn test()
{
println!("Hello World");
}

View file

@ -16,10 +16,4 @@ println!("now go on, pick a number nyehehehehehehe");
io::stdin().read_line(&mut _user_input).expect("Failed to read line");
println!("The random number was {} and you guessed {}",_RandomNumber,_user_input);
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.