Other articles


  1. REPL paradigm

    一、Introduction

    REPL stands for Read-Eval-Print Loop. It's a simple but powerful interactive programming environment commonly found in programming languages. Here's a breakdown of how it works:

    1. Read: The REPL accepts input from the user. This input can be a single line of code, a block of code, or even …
    read more

links