Skip to content
ricardoboss edited this page Sep 13, 2023 · 1 revision

Unterminated String Exception

Description

A string was not terminated with a closing quote.

Example:

string x = "Hello, World!

println(x)

Remediation

Add a closing quote to the string.

Example:

- string x = "Hello, World!
+ string x = "Hello, World!"

  println(x)