SamyPesse / How-to-Make-a-Computer-Operating-System

How to Make a Computer Operating System in C++
https://samypesse.gitbook.io/how-to-create-an-operating-system
Apache License 2.0
21.35k stars 3.42k forks source link

Are including a section for creating your own REPL ? #43

Open rahul8590 opened 10 years ago

rahul8590 commented 10 years ago

It would be awesome to have a section for creating your own repl . What are your thoughts on this ?

erinzm commented 10 years ago

That's not actually a part of an OS. This guide is about an OS, and he shows in the userland folder how to use libc. Just write your REPL normally (in C++ or whatever), and link it against the OS. TL;DR: There are other tutorials on REPLs out there.