Although I may have learned programming with Apple Basic, I didn't really understand procedures and the like until I learned Pascal (MPW Pascal in this case). Pascal was a good foundation for learning programming, but I didn't really understand what was going on until I learned C.
C (later C++) is what really introduced me to how programming works. Learning memory management made me more careful about what memory I use and where. It's also where I started understanding data structures better, and learning how data structures control how data is laid out in memory.
Java is what taught me about real Object-Oriented principles and how Software Engineering works. It showed me how code reuse would work in a (nearly) perfect world. Java showed me that libraries can be more than just useful subroutines, they can be integral parts of your program if you use them carefully.
Later, I learned Scheme and Prolog, and they expanded my boundaries on what I thought programming was. They showed me that there's more to programming than just objects and procedures. They showed me (Scheme mostly) that programming can be elegant and dynamic, that it's not just about writing a method and running it.
These days I'm looking at Eiffel and some of the more esoteric languages like Shakespeare and Whitespace. It's always interesting to see what other people consider to be programming. If anything, you might learn something about programming you never knew.