Hacker News new | ask | show | jobs
by coralreef 4229 days ago
What kind of programming techniques did you learn?
1 comments

Lua is very multi-paradigm so it certainly made for an interesting place to start. The most valuable thing I learned is profiling before optimizing. The way Lua tables work also helped me understand the advantages of different data structures, because if you don't, the flexibility is fairly treacherous. Lua also convinced me that static typing is very useful.