Skip to content

Commit d289f84

Browse files
committed
Initial commit
1 parent 71c6da7 commit d289f84

File tree

4 files changed

+21
-2
lines changed

4 files changed

+21
-2
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,8 @@ Cargo.lock
88

99
# These are backup files generated by rustfmt
1010
**/*.rs.bk
11+
12+
13+
# Added by cargo
14+
15+
/target

Cargo.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[package]
2+
name = "tic-tac-toe-rust"
3+
version = "0.1.0"
4+
authors = ["Abhishek Sriram <68271853+Noobsiecoder@users.noreply.github.com>"]
5+
edition = "2018"
6+
7+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8+
9+
[dependencies]

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1-
# tic-tac-toe-rust
2-
Tic Tac Toe game in command line, built using Rust-lang
1+
# Tic Tac Toe CLI game
2+
3+
- Tic Tac Toe game in command line
4+
- Built using [Rust-lang](https://www.rust-lang.org/)

src/main.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
println!("Hello, world!");
3+
}

0 commit comments

Comments
 (0)