Unsound &
Incomplete

Spilling Your Guts to the Shell

Nowadays, most programming languages have some kind of read-eval-print loop, or REPL, which lets you enter expressions and immediately see the results of evaluating them. Using a REPL makes it easy to learn new features of the language or its libraries, since you can try out, say, a single function, without having to set up a whole program and its supporting infrastructure. Unfortunately, there’s no widely-used REPL for C++, which generally makes learning to use C++ libraries more difficult than learning to use libraries for other languages.

OpenFst, a C++ library for manipulating weighted finite-state transducers (WFTs), solves the C++-has-no-REPL problem in a slick way: it exposes most of its functionality as standalone programs that can be invoked at the shell and composed together with pipelining. In essence, the shell is the REPL for OpenFst operations.

This approach works for OpenFst because: