With imperative programming, you tell the compiler what you want to happen, step by step. For example, let's start with this collection, and choose the odd numbers: With imperative programming, we'd step through this, and decide what we want: if (num % 2 != 0) results.Add(num); Here, we're saying:
Ver versión en caché