in reply to expect module: exp_continue error

To solve the problem, make the following capitalisation change in line 1:

-    use expect;
+    use Expect;

Perl is case sensitive and cannot find the symbol   exp_continue   in the   expect   namespace
because it lives in the   Expect   namespace only.

Cheers, Sören