CINT is acommand lineC/C++interpreter that was originally included in theobject-oriented data analysispackageROOT.[1] Although intended for use with the other faculties of ROOT, CINT can also be used as a standalone addition to another program that requires such an interpreter. In 2013,CERN switched to the Cling C++ interpreter, so CINT is now distributed standalone by the author.[2][3]
CINT is an interpreted version of C/C++, much in the wayBeanShell is an interpreted version ofJava. In addition to being a language interpreter, it offers certainBash-likeshell features such as history andtab-completion. To accomplish the latter, it relies heavily on thereflection support built into ROOT. User classes that follow these interfaces may also take advantage of these features.
The language originally interpreted by CINT was actually something of a hybrid between C and C++, covering about 95% of ANSI C and 85% of C++.[4] The syntax, however, is a bit more forgiving than either language. For example, the operator-> can be replaced by. with only an optional warning. In addition, statements on the command line do not need to end with a semi-colon, although this is necessary for statements in macros.
As an alternative to CINT,ROOT also provides Cling which is anREPL application usingLLVM'sClang as a C++ JIT compilation environment.[5] This effort is being upstreamed intoclang-repl.