Error code E0763

A byte constant wasn’t correctly ended.

Erroneous code example:

let c = b'a; // error!
Run

To fix this error, add the missing quote:

let c = b'a'; // ok!
Run

Back to list of error codes