Updated Quick Start 2018 (markdown)

This commit is contained in:
Kobi Lurie 2018-10-10 22:15:04 +03:00
parent ce383a3932
commit 47cfd2c65d
1 changed files with 19 additions and 5 deletions

View File

@ -14,17 +14,31 @@ Note: Instructions for cross compilation are here.
4) Writing a basic library, source control, unit tests, and IDE tips 4) Writing a basic library, source control, unit tests, and IDE tips
5) Getting a skeleton program up and running, and using that library. 5) Getting a skeleton program up and running, and using that library.
Please choose target for a step by step tutorial. Please choose the kind of program you're developing:
(Links provide libraries you'll need, and guide you to a deployable skeleton app)
- A command line tool.
- A portable GUI desktop app
- a GUI app for a specific platform
- A 2D Game
- A Web application or website
- An android mobile app
- An iPhone mobile app
- a library
- Other? leave feedback to let us know what we're missing.
5.5) Recommended workflows, ways to avoid complexity, and general advice for writing software well from veteran Nim users.
6) Language basics. 6) Language basics.
- These are wonderful tutorials: ... links... - These are wonderful tutorials: ... links...
7) Language at a glance, Nim from mainstream language: 7) Language at a glance, Nim from the mainstream language you know:
- Nim for python programmers - Nim for the python programmer
- Nim for the C programmer - Nim for the C programmer
- Nim for C# - Nim for the C# programmer
- Nim for the Javascript cowboy
- ... add more at our leisure.
Also explain support for different paradigms in Nim. (procedural, OOP, functional) Related: Also explain support for different paradigms in Nim. (procedural, OOP, functional)
8) Use Cases: How to do X in Nim? (by topic) 8) Use Cases: How to do X in Nim? (by topic)
- Show Nim packages and std lib, Maybe in reference to other language capabilities, or even compared to their samples. - Show Nim packages and std lib, Maybe in reference to other language capabilities, or even compared to their samples.