Ask HN: How can I get started with programming?
I asked a question a few weeks ago about the best language to start with programming, and someone suggested to instead come up with a project and learn what I need to complete it. So I'd like to try to create a text adventure, something like Zork. What advice do you have?
2 comments
[ 142 ms ] story [ 118 ms ] threadAlso, take a look at Inform [1]. It's a language/engine designed for text adventures. It's not exactly a standard looking language, as it's very domain specific, but it may give you some ideas for the things your game engine will need to track, and ideas for how to structure things.
[0] REPL: Read-eval-print-loop. This describes the process of the interactive environment that's paired with the language. It reads what you've sent it, evaluates it, prints the output, and repeats.
[1] http://inform7.com/