Files
Stephan Renatus 53c5a871d0 repl: expose future.keywords import feature
The future.keywords import can be accessed via the repl in the same
way any other import can, and is handled accordingly:

    > show
    no rules defined
    > import future.keywords.in
    > show
    package repl

    import future.keywords.in
    > 1 in [true]
    false
    > r { input in data.foo }
    Rule 'r' defined in package repl. Type 'show' to see rules.
    > show
    package repl

    import future.keywords.in

    r {
            input in data.foo
    }
    >

Signed-off-by: Stephan Renatus <stephan.renatus@gmail.com>
2021-10-14 19:21:52 +02:00
..