Cursus Raku / Elementa / Fundamenta variabilium et generum datorum / Scalari variabiles / Assignando valorem
Quiz 1: Assignando valorem
Complete the following lines of code to get a working program that creates a few variables and assigns some values to them.
| . | meus $first-name; |
| $ | meus ␣last-name; |
| = | $first-name ␣ 'Emily'; |
| = ; | $last-name ␣ 'Lizards'␣ |
| ; | dic $first-name␣ |
| . | dic $last-name; |