|
|
|
|
|
by ColinWright
4084 days ago
|
|
Using the "Hello World" program is not about making you feel like you're making progress, it's about ensuring that you understand your end-to-end process. You need to: * Create a program * Compile and/or invoke * Find the output Then everything else is about increasing that processing you do between input and output. Learning programming simply because you think it will be a good career is hard. I would suggest starting on Project Euler[0] and concentrating not just on solving the problems, but solving the projects well. Reflecting on the quality of code means you stop just hacking out something that works, and worry about readability, maintainability, and other such important issues. HMWV, but that's my $0.02 [0] https://projecteuler.net/ |
|