Edit crafting interpreter to have both C and Java

This commit is contained in:
Tu Tran 2018-04-17 11:55:25 -04:00 committed by GitHub
parent 959a27d97b
commit 4252c2f302
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,7 +27,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB
## C/C++:
* [Build an Interpreter in C](http://www.craftinginterpreters.com/)
* [Build an Interpreter](http://www.craftinginterpreters.com/) (Chapter 14 on is written in C)
* [Write a Shell in C](https://brennan.io/2015/01/16/write-a-shell-in-c/)
* [Write a FUSE Filesystem](https://www.cs.nmsu.edu/~pfeiffer/fuse-tutorial/)
* [Build Your Own Text Editor](http://viewsourcecode.org/snaptoken/kilo/)
@ -83,6 +83,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB
## Java:
* [Build an Interpreter](http://www.craftinginterpreters.com/) (Chapter 4-13 is written in Java)
* [Build a Simple HTTP Server with Java](http://javarevisited.blogspot.com/2015/06/how-to-create-http-server-in-java-serversocket-example.html)
* [Build an Android Flashlight App](https://www.youtube.com/watch?v=dhWL4DC7Krs)
* [Build a Spring Boot App with User Authentication](https://scotch.io/tutorials/build-a-spring-boot-app-with-user-authentication)