1
I Use This!
Activity Not Available

Commits : Listings

Analyzed over 1 year ago. based on code collected over 1 year ago.
Mar 06, 2023 — Mar 06, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
- Added section on type equivalence - Changed signature syntax: parameter names are always mandatory - Minor white-space cosmetic changes More... about 17 years ago
fix description of iota to reflect reality. More... about 17 years ago
Add description of type conversions. More... about 17 years ago
- essentially reverted my change of yesterday with respect to char/string syntax - fixed indentation in many places - fixed a couple of typos More... over 17 years ago
- added language to document .() notation - propose change to char/string productions: I find this easier to read More... over 17 years ago
Added discussion of new, nil, and initialization. More... over 17 years ago
Add description of how compiling and linking handle dependencies. More... over 17 years ago
remove noisy print More... over 17 years ago
Add a rudimentary vector container to ameliorate the inability to allocate dynamic arrays. More... over 17 years ago
make digits a string instead of an array of bytes. use string* to pass it around. More... over 17 years ago
generate an error if the foreward declaration of a func does not exactly match the actual (or another foreward) declaration. the reason is that when there are 2 declarations of a function, the names of the parameters are taken from the first. thus func x(a int); followed by func x(b int) { ... } will have the parameter named "a" and "b" will be undefined. More... over 17 years ago
bug36 fixed error in symbol table in the second forward declaration of a function. More... over 17 years ago
code to assign nil to an interface without conversions More... over 17 years ago
bug31 More... over 17 years ago
bug28 fix code generation bug in second index of string slice. More... over 17 years ago
fix bug30 automatic declaration leaking from one function to another More... over 17 years ago
SVN=114213 More... over 17 years ago
SVN=114204 More... over 17 years ago
SVN=114202 More... over 17 years ago
add script to generate .html from .txt More... over 17 years ago
Add select statement More... over 17 years ago
Fix date stamp More... over 17 years ago
Explain goto constraints. Add description of 'any'. Simplify and complete syntax for literals. More... over 17 years ago
Basic formatted I/O library plus one support lib. More... over 17 years ago
- Make Coco/R-based parser work w/ UTF-8 encoded files even if there is no (optional) UTF-8 marker present. More... over 17 years ago
- fixed my scripts More... over 17 years ago
- new directory structure More... over 17 years ago
update document. todo still: array and map literals; syntax for basic literals. More... over 17 years ago
- added extra escaped chars More... over 17 years ago
- Implemented simple rule for optional semicolons: Semicolons are terminators for statements as in C, but if followed by a "}" they are not required. This is easy to understand and produces the desired result for statements. - Updated todo.txt. More... over 17 years ago