A Compiler Writing Journey
11–20 of 23 posts
Re: A Compiler Writing Journey
#12Re: A Compiler Writing Journey
#13How much of Claude was used?
Re: A Compiler Writing Journey
#14Re: A Compiler Writing Journey
#15Unlike how a bunch of projects end right as they start to get good, this has a great ending. Thank you
Re: A Compiler Writing Journey
#16[flagged]
Re: A Compiler Writing Journey
#17Previously:
12 comments; 156 points. 2022 November 29. https://news.ycombinator.com/item?id=33788013>
67 comments; 484 points. 2020 January 8. https://news.ycombinator.com/item?id=21968420>
Re: A Compiler Writing Journey
#18Very cool! I can’t imagine writing everything in C, I’m currently learning this in OCaml which seems nicer for a project like this.
I will say that C is a perfect low level language for bootstrapping more complex systems and languages. If I were building a bootstrap compiler I would write it in C and have it emit C. Specifically C89/99 ONLY with no POSIX/GNU deps. that will guarantee a large swath of compiler and system support out of the box.
Re: A Compiler Writing Journey
#19Very cool! I can’t imagine writing everything in C, I’m currently learning this in OCaml which seems nicer for a project like this.
> I can’t imagine writing everything in C I will say that C is a perfect low level language for bootstrapping more complex systems and languages. If I were building a bootstrap compiler I would write it in C and have it emit C. Specifically C89/99 ONLY with no POSIX/GNU deps. that will guarantee a large swath of compiler and system support out of the box.
Re: A Compiler Writing Journey
#20Very cool! I can’t imagine writing everything in C, I’m currently learning this in OCaml which seems nicer for a project like this.
> I can’t imagine writing everything in C I will say that C is a perfect low level language for bootstrapping more complex systems and languages. If I were building a bootstrap compiler I would write it in C and have it emit C. Specifically C89/99 ONLY with no POSIX/GNU deps. that will guarantee a large swath of compiler and system support out of the box.