Programming concepts class1
Programming concepts class1
Example in JavaScript:
```js
let name = "Federico";
let age = 30;
console.log("Name:", name, "Age:", age);
```
This declares two variables and prints them.
print(greet("Federico"))
```
This function takes a name and returns a greeting.