Character: ... just one please

Syntax:

var A: Character = "A"

A character is a single-character string literal. Characters are most commonly seen as the building blocks of the String type. By default, Swift assumes that a string literal is in fact of the String type, therefore in order to create a character, you must specifically declare it a character.

let a: Character = "a"
var b: Character = "b"