Hacker Newsnew | past | comments | ask | show | jobs | submitlogin
Ask HN: Example of annotated source code
1 point by chauhankiran on April 14, 2018 | hide | past | favorite | 2 comments
I was looking over Underscore.js library and found a link on annotated source code[0]. Do you know such type of annotated source code which you recommended to read?

[0].http://underscorejs.org/docs/underscore.html

Some more links:

Backbone.js - http://backbonejs.org/docs/backbone.html jQuery 1.6 - http://robflaherty.github.io/jquery-annotated-source/



Small git clone in javascript:

http://gitlet.maryrosecook.com/docs/gitlet.html

Small Lisp interpreter in Python:

http://khamidou.com/compilers/lisp.py/

If you are interested in annotation formats other than side-by-side, many Jupyter or IPython notebooks would qualify, for example Peter Norvig's programming exercises:

https://github.com/norvig/pytudes


> http://khamidou.com/compilers/lisp.py/

Lacks an actual description of the grammar/semantics of the implemented language.

Should this work:

    ((lambda (foo) (+ foo 3)) 39)
or this

    (begin (define foo (lambda (a) (lambda (b) (+ a b)))) (define bar (foo 20)) (print (bar 22)))
> As you can see, it turns out its pretty easy to make your own interpreter

but of what language? If you don't document the language you are trying to implement, we don't know what code should be valid. It's especially easy to implement something if you don't say what you are trying to implement...




Consider applying for YC's Winter 2026 batch! Applications are open till Nov 10

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: