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;