Building a simple shell in C – Part 1
blog.ehoneahobed.com
Building a simple shell in C – Part 1
1–5 of 5 posts
Re: Building a simple shell in C – Part 1
#2http://github.com/codazoda/goshell
I also recorded a “live coding” style video of it. I haven’t released that yet. I plan to start releasing weekly video’s in January and I’m trying to build up a few so that I’m not rushed. I’m sure they’ll be terrible at first. :P
Re: Building a simple shell in C – Part 1
#3I focused on languages I already had _some_ experience in for now, and I think my favorite so far is the one in Go – it's a good mix of things I care about: simple syntax, good performance, fast compilation, good tooling, rich standard library.
Nim comes close, except the error messages are harder to understand, and a few concepts are a bit foreign to me.
Re: Building a simple shell in C – Part 1
#4Interesting. I just wrote a very similar shell in Go. http://github.com/codazoda/goshell I also recorded a “live coding” style video of it. I haven’t released that yet. I plan to start releasing weekly video’s in January and I’m trying to build up a few so that I’m not rushed. I’m sure they’ll be terrible at first. :P
Re: Building a simple shell in C – Part 1
#5this is cool! I've recently tried to write a very basic shell in multiple languages, as a way to try a few languages [1]. I focused on languages I already had _some_ experience in for now, and I think my favorite so far is the one in Go – it's a good mix of things I care about: simple syntax, good performance, fast compilation, good tooling, rich standard library. Nim comes close, except the error messages are harder…