MrTheCool
@MrTheCool
0
1
I downloaded this file off github. It's got a replit file and is meant to run off replit. For whatever reason it's not working when run is clicked.
C++
Coder100 Change your .replit to this:
language = "cpp"
run = "cd src && cmake ../ && cmake --build . && ./2048"
there's no folder called build lol2 years ago
programmeruser Replace the contents of the .replit file with this:
language = "cpp"
run = "mkdir -p build && cd build && cmake ../ && cmake --build . && ./2048"
`2 years ago
RYANTADIPARTHI If you clicked run to replit or some button, then it should work. try refreshing, making a new repl, or report to bugs.2 years ago
Play UNO!! Made w/ C++
Note: there's a couple of bugs and things like that so don't play if you don't want to risk the chance of it bugging out mid ga
C++
GradeFStudent maybe you could run a command after a player's turn ends that clears the screen so person cant see other person's hand.2 years ago