2023-11-28 16:01:38 +00:00
|
|
|
dictionary = {
|
2023-10-30 21:11:06 +00:00
|
|
|
dust = "awesome"
|
|
|
|
answer = 42
|
2023-11-28 16:01:38 +00:00
|
|
|
}
|
2023-10-30 21:11:06 +00:00
|
|
|
|
2023-12-30 02:15:03 +00:00
|
|
|
output(
|
2023-10-30 21:11:06 +00:00
|
|
|
'Dust is '
|
2023-11-10 21:24:19 +00:00
|
|
|
+ dictionary:dust
|
2023-10-30 21:11:06 +00:00
|
|
|
+ '! The answer is '
|
2023-11-10 21:24:19 +00:00
|
|
|
+ dictionary:answer
|
2023-10-30 21:11:06 +00:00
|
|
|
)
|