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

8 lines
109 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
func assign2ref(ref, value) {
*ref = value;
}
var x = 10;
assign2ref(\x, 20);
say x; # x is now 20