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++
Coder100Change your .replit to this:
language = "cpp"
run = "cd src && cmake ../ && cmake --build . && ./2048"
there's no folder called build lol3 years ago
programmeruserReplace the contents of the .replit file with this:
language = "cpp"
run = "mkdir -p build && cd build && cmake ../ && cmake --build . && ./2048"
`3 years ago
RYANTADIPARTHIIf you clicked run to replit or some button, then it should work. try refreshing, making a new repl, or report to bugs.3 years ago