Skip to content

steelswords/connect4

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Connect 4

Blog post here: tristanandrus.com

As part of my journey to learn Rust, I decided I needed a fun project. So here it is: Connect 4!

In a move atypical of the game industry, this game offers a true local multiplayer experience.

Very Fun Playthrough!

Future Work

  • Multiplayer
  • AI

Nitty Gritty Details

Debugging

The best way to debug is to attach to the process from within GDB. Your system configuration may vary. I had to start gdb with sudo to get this to work.

In one terminal emulator:

cargo run

In another:

$ pgrep connect4
112345

$ gdb

(gdb) attach 112345

From there you can run GDB normally.

About

Connect 4 for the terminal implemented in Rust

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages