Error code E0762

A character literal wasn’t ended with a quote.

Erroneous code example:

static C: char = '●; // error!
Run

To fix this error, add the missing quote:

static C: char = '●'; // ok!
Run

Back to list of error codes