Customize syntax of lisp with LangTrans
source.yaml - Syntax Representation(Customized Language)
(Regular Expression for tokens)
target.yaml - Pattern Representation(Orginal Language)
(Template of orginal language with tokens)
func printhis(s):
format(t,s)
printhis("Customized!")
(defun printhis (s)
(format t s)
)
(printhis "Customized!")
py langtrans.py <source file> <target file> source target