RosettaCodeData/Task/Pointers-and-references/Sidef/pointers-and-references.sidef

8 lines
109 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
func assign2ref(ref, value) {
*ref = value;
}
var x = 10;
assign2ref(\x, 20);
say x; # x is now 20