Files
compiler-the-translators/tests/given/expected/entry.duplicateDifferent.alpha.asc
2025-05-04 16:05:13 -04:00

14 lines
295 B
Plaintext

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