12 lines
135 B
Plaintext
12 lines
135 B
Plaintext
|
dictionary = {
|
||
|
dust = "awesome"
|
||
|
answer = 42
|
||
|
}
|
||
|
|
||
|
(output
|
||
|
'Dust is '
|
||
|
+ dictionary.dust
|
||
|
+ '! The answer is '
|
||
|
+ dictionary.answer
|
||
|
)
|