Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
14
Task/String-append/Gosu/string-append.gosu
Normal file
14
Task/String-append/Gosu/string-append.gosu
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
// Example 1
|
||||
var s = "a"
|
||||
s += "b"
|
||||
s += "c"
|
||||
print(s)
|
||||
|
||||
// Example 2
|
||||
print("a" + "b" + "c")
|
||||
|
||||
// Example 3
|
||||
var a = "a"
|
||||
var b = "b"
|
||||
var c = "c"
|
||||
print("${a}${b}${c}")
|
||||
Loading…
Add table
Add a link
Reference in a new issue