DEV Community

Trent Glimp
Trent Glimp

Posted on • Edited on

My Wordle Knock-Off

As I'm about to start my freshman year of college in just over a month now, I decided that I want to polish up my CS skills I've learned from high school. I decided to start Codecademy's "Computer Science Career Path" which had me make a OOP terminal based game. Lucky for me, I had done this as a project my sophomore year in a CS class. The course told me to save the project to GitHub and then write a blog post for it, so why not?

My game is called Octodle because it's an eight-letter word game instead of the standard 5. It updates every day just like the original so have fun coming back and playing it every day if you want to!

GitHub logo Trent-Glimp / OctodleGameProj

Terminal-based Wordle clone made to learn OOP in high school

Octodle

Octodle is a terminal-based word-guessing game inspired by Wordle, but with an eight-letter challenge. Test your vocabulary and deduction skills as you try to guess the daily word within six attempts.

About the Game

Octodle presents players with a new eight-letter word challenge every day. You have six attempts to guess the correct word, with feedback provided after each guess to help narrow down the possibilities.

Features

  • Daily Word Challenge: A new eight-letter word is selected each day based on the date
  • Intelligent Feedback: After each guess, you'll see:
    • Letters placed in their correct positions
    • A list of all correct letters that appear in the target word
  • Word Validation: Only valid eight-letter words are accepted as guesses
  • Simple Terminal Interface: Clean, easy-to-use command-line gameplay

How to Play

  1. Run the game in your terminal
  2. Enter your eight-letter guess
  3. Receive feedback on your guess
    • Correctly positioned letters…

Me playing today's game!

Top comments (1)

Collapse
 
itsmattmccane profile image
Matthew McCane

Great job