Well, It is actually a feature that is easier made available in interpreted languages, so Google is basically right.
It is all about the E in repl: that requires run-time evaluation. That does not mean it is impossible to implement it in Pascal, but then you need to use a Pascal interpreter. There are several of those, like Pascalscript in the standard distribution.
There are also some Eval() functions available for Pascal, but those are not full interpeters.
To summarize: REPL is an explicit feature for which interpreted languages are better suited. It is by its very nature also always very slow. So, yes, it can be done in Pascal, likely interpreted Pascal.
Pascalscript is used in the Lazarus ide and is readily available and capable to implement REPL.
It takes some work from your side to implement the interactive part of REPL, but not much and nothing fancy.
( meaning a beginner that knows about a button, memo's and edit's can implement it...)
[edit] pas2js may also be a good candidate if pascal syntax is required, as are the language bindings for Python, and the ECMA family of scripting languages, but these have different syntax.
I prefer Python bindings but that is a matter of taste.