RosettaCodeData/Task/Copy-a-string/Wren/copy-a-string.wren

4 lines
74 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
var s = "wren"
var t = s
System.print("Are 's' and 't' equal? %(s == t)")