Advertisement
evanescente-ondine

p_token-parenthese.ads

Feb 13th, 2018
784
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ada 0.40 KB | None | 0 0
  1. package P_Token.Parenthese is
  2.  
  3.    type T_Parenthese is ('(',')');
  4.    type T_Token_Parenthese is new T_Token with
  5.       record
  6.       La_Parenthese : T_Parenthese;
  7.    end record;
  8.    function To_Token (Elem : in T_Parenthese) return T_Token_Parenthese;
  9.    function Get_Elem (Token : in T_Token_Parenthese) return T_Parenthese;
  10.    procedure Ecrire (Token : in T_Token_Parenthese);
  11.  
  12. end P_Token.Parenthese;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement