Skip to content

Latest commit

 

History

History
executable file
·
15 lines (14 loc) · 291 Bytes

README.md

File metadata and controls

executable file
·
15 lines (14 loc) · 291 Bytes

SNL Compiler

This is a SNL language compiler written by our group. It converts a SNL program into concrete syntax tree. We provide a test program.

program sd
type  i=integer;
var  i x;
procedure sd(integer a);
begin 
   write(a)
end    
begin
   a:=1
end.