CS450 Compiler Design
14
Example: Syntax of “Mini-Triangle”
•Mini-Triangle is a very simple Pascal-like programming language.
•An example program:
!This is a comment.
let const m ~ 7;
    var n: Integer
in
   begin
      n := 2 * m * m  ;
      putint(n)
   end
Declarations
Command
Expression