**This is an old revision of the document!** ----
June 6: Weekly meeting today. We discussed about the syntax: * Variable names can contain '-' and '/'. So, something like ${a+2} is not possible. * Decided we needed a formal document describing the syntax. June 7: Spent today writing down a formal grammar. Discussed it with Stefan, who suggested some changes, which I put in. June 8: Put in string support. set resp y echo $(${resp} == y) works. This is in [[http://git.etherboot.org/?p=people/lynusvaz/gpxe.git;a=commit;h=4a7aba4dadc8f38844767f931643b712f43662e1|my git repository]] now. A few bugs remain, which I will work on. June 9: Continued working on the string support. Removed the obvious bugs, and it seems to work properly now. I will also have to think about quoting. June 10: Commit: [[http://git.etherboot.org/?p=people/lynusvaz/gpxe.git;a=commit;h=8e9d952f1a67b0c2e7a9f61605d589614e5e8a48| 8e9d952f1a67b0c2e7a9f61605d589614e5e8a48]] June 11: Worked on fixing memory leaks. Latest code [[http://git.etherboot.org/?p=people/lynusvaz/gpxe.git;a=commit;h=709a46ac676cb9010490f9c67efc5a65fedb15f7|here]]. June 12: The arithmetic parser is almost done. I installed valgrind, to help with the dynamic allocation/deallocation checks. It uncovered a few cases I had not thought about. So, these have been fixed. Also, I have tried to modify my coding style according to the style used in gPXE. The latest commit is [[http://git.etherboot.org/?p=people/lynusvaz/gpxe.git;a=commit;h=d027ad06ce1a0f0983ea9151785d723215a9ab04|here]].