RosettaCodeData/Task/Copy-a-string/Wren/copy-a-string.wren
2023-07-01 13:44:08 -04:00

3 lines
74 B
Text

var s = "wren"
var t = s
System.print("Are 's' and 't' equal? %(s == t)")