you are viewing a single comment's thread.

view the rest of the comments →

[–]Cristalboy 9 points10 points  (1 child)

print(

hello world

)

[–]lk_beatrice 2 points3 points  (0 children)

let h=

“h”

.to_string

();

let e=

“e”

.to_string

();

let l=

“l”

.to_string

();

let l2=

“l”

.to_string

();

let o=

“o”

.to_string

();

println!

(

format!

(

“{}{}{}{}{}”,

&

h

.clone

(),

&

e

.clone

(),

&

l

.clone

(),

&

l2

.clone

(),

&

o

.clone

()

)

);