summaryrefslogtreecommitdiff
path: root/tmp/test.fy
blob: 609f0c214b8ef09ae92e7b0733269abda1757bc7 (plain)
1
2
3
4
5
6
7
8
#*
 * Examples of how to use references
 *#

# Create a variable foo, and bar is a reference to foo
my foo = "foo";
my bar = &foo;