PROGRAM SymbolSeperators;
    {-----------------------------------}
    { Symbol seperators in Pascal are:  }
    { 1. blanks: space + tab            }
    { 2. end-of-line                    }
    { 3. comments                       }
    {-----------------------------------}

    VAR
        A: Integer;
BEGIN
    WriteLn('Hello, world');    { This is a comment }

    WriteLn('Hola, mundo');     (* this line is a comment too *)

    A :=                        { | space + tab + newline character            }
                                { | + comments                                 }
                                { | are symbol seperators                      }
            40;
    WriteLn('A=', A);
END.
