# g1.g first grammar for the project Book P83 # # G = (V, T, P, S) V={S,A} T={a,b} S=S # S -> aAS S -> a A -> SbA A -> SS A -> ba