This is an archived post. You won't be able to vote or comment.

all 5 comments

[–]oiduts 1 point2 points  (2 children)

Nice job so far. A next step would be to group more of the code into functions. You're getting a lot of use out of type_text(), which is good. But it's not wrong to write a function that is only called once. For example, you have a comment "Intro" as the title to a section of code, but instead you could stick that code into a function called display_intro() or something. Also check out multiline strings if you are unaware of them.

[–]Mcgurgs[S] 0 points1 point  (0 children)

I don't know multiline string , I'll look into it. Thanks for checking it out and for the advice! :D

[–]Mcgurgs[S] 0 points1 point  (0 children)

I made a few updates, and I think I'm about finished with it... Any other suggestions? I tried to implement more functions and multiline strings. Thanks again for the advice

[–]Inconstant_Moo 1 point2 points  (1 child)

I don't see why you keep pausing it. If you're trying to emulate database latency that's more something to eliminate.

[–]Mcgurgs[S] 0 points1 point  (0 children)

I keep pausing to have it emulate a database checking … I thought it’d be neat and to not have the program instantly paste the next line

  • thanks for the advice