create new project for a refactored mastermind

This commit is contained in:
AnthonyMichaelTDM
2022-04-30 14:32:45 -07:00
6 changed files with 15 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
[package]
name = "rust"
name = "Mastermind"
version = "0.1.0"
edition = "2021"

View File

@@ -0,0 +1,8 @@
[package]
name = "Mastermind_refactored_for_conventions"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@@ -0,0 +1,3 @@
Original source downloaded [from Vintage Basic](http://www.vintage-basic.net/games.html)
Conversion to [Rust](https://www.rust-lang.org/) by Anthony Rubick [AnthonyMichaelTDM](https://github.com/AnthonyMichaelTDM)

View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}