bobjervis / parasol

The Parasol Language and related core development tools
Apache License 2.0
2 stars 2 forks source link

Implement floating point printf formatting. #2

Closed bobjervis closed 9 years ago

bobjervis commented 9 years ago

Need to support:

%e %f %g

Formatting conventions should follow C, C++, Java, etc.

bobjervis commented 9 years ago

I've got these formats implemented. There remains a bug in the generation of function call parameters when there is a mix of floating-point and integer/pointer arguments.

bobjervis commented 9 years ago

Done.