Skip to content
Sign UpLog In
Profile icon

Sai Dara

@CODER34352
Coding & Gaming. Same Thing!
Repls
Community
CODER34352
CODER34352
shared a Post
2 years ago
I am not getting the new update
For some reason i can't get the new update for replit. Is it a bug or something? My friend has the explore/.draw feature. Why do i not have it?
FloCal35
FloCal35
Would it be because he's an explorer and your not?2 years ago
CODER34352
CODER34352
shared a Post
2 years ago
I am making a new game in C++, but i am a beginner to programming so i am not that good. Is there any websites i can learn from, or other tips you guy
Coder100
Coder100
Making a game in c++ isn't hard, yet you should first learn c++ https://www.tutorialspoint.com/cplusplus/index.htm Then, look at my c project!! https://replit.com/@Coder100/rpg-game-in-C-ok-have-some-fun-now-1#Makefile2 years ago
matthewproskils
matthewproskils
Message me here: Mr;#5320. I am pretty good at c++ and want someone to help me create a exploring game2 years ago
CODER34352
CODER34352
shared a Post
2 years ago
I have a question. How do you add color to a C++ text and make it go in Slow print?
Coder100
Coder100
#include #include void sp(std::string str, int time) { for (char c : str) { std::cout << c << std::flush; usleep(time * 1000); } } Time is in milliseconds, like most things.2 years ago
ch1ck3n
ch1ck3n
https://www.geeksforgeeks.org/how-to-print-colored-text-in-c/ try using this2 years ago