String

A string is a chain of characters, such as this text.

Strings are defined by enclosing a portion of text using either single or double quotes:

greeting = "Hello World"
farewell = 'Goodbye'

Other Languages