Coder-Spirit / Jupyter-PHP

A PHP Kernel for Jupyter
MIT License
223 stars 33 forks source link

for loop output many lines #32

Open changsijay opened 4 years ago

changsijay commented 4 years ago
for ($i=1; $i<10; $i++) {
    echo $i;
}

this code output 9 lines in Jupyter instead of 1 line.

Screen Shot 2020-07-24 at 12 55 31 AM