1.4. Strings and print to console
var multiline = """
I am a multiline String.
I might look weird, but I am really very simple.
At times I could be very useful!
"""print(multiline)
Video
Last updated
var multiline = """
I am a multiline String.
I might look weird, but I am really very simple.
At times I could be very useful!
"""print(multiline)
Last updated