RosettaCodeData/Task/Topic-variable/Wren/topic-variable.wren
2023-07-01 13:44:08 -04:00

6 lines
118 B
Text

var T // global scope
var doSomethingWithT = Fn.new { [T * T, T.sqrt] }
T = 3
System.print(doSomethingWithT.call())