alpha parser, version 0.2 (2023-03-04) - Annotated Source Code for file entry.local.alpha 001: type M : string -> integer 002: 003: function entry : M 004: 005: entry(s) := { 006: [ 007: integer: x 008: ] 009: x := 0; 010: return x; 011: } 012: