c-repl: a C read-eval-print loop. Copyright (C) 2008 Evan Martin <martine@danga.com> Many programming languages come with a REPL (read-eval-print loop), which allows you to type in code line by line and see what it does. This is quite useful for prototyping, experimentation, and debugging code. Other programming languages, and especially C, use a "compile-run" model, and don't provide a REPL. Let'