String Literals

String literals represent text values enclosed in double quotation marks.

StringLiteral    = '"' { Character } '"' ;
Character        = ? any character except " or newline ? ;

Notes

  • Enclosed in double quotes
  • Cannot contain newlines

Back to top

Copyright © Mesch Systems. All rights reserved.