blob: cd91d33439fba4e316939e23a6aa3ef65dc98603 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Quoting.
#
"print" = a
'print' += b
pr"int" += c
print'' += d
# Not = or +=.
#
print += e
print $print
# <name>(
#
print(test)
# Separated.
#
define print: file
print{foo}:
./:
|