tvl-depot/tvix/cli
Aspen Smith c2f649f62e feat(tvix/repl): Add a command to recursively print
Add a command, :p, to evaluate an expression and recursively print the
result, as if `--strict` had been passed on the command line.

Demonstration of this working:

    ❯ cargo r --bin tvix
        Finished dev [unoptimized + debuginfo] target(s) in 0.27s
        Running `target/debug/tvix`
    tvix-repl> { x = (x: x) 1; }
    => { x = <CODE>; } :: set
    tvix-repl> :p { x = (x: x) 1; }
    => { x = 1; } :: set

Change-Id: I1a81d7481160c30d2a4483c6308e25fa45f2dfdf
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11738
Autosubmit: aspen <root@gws.fyi>
Tested-by: BuildkiteCI
Reviewed-by: flokli <flokli@flokli.de>
2024-06-01 09:04:59 +00:00
..
src feat(tvix/repl): Add a command to recursively print 2024-06-01 09:04:59 +00:00
Cargo.toml feat(tvix/repl): Support multiline input 2024-06-01 09:04:59 +00:00
default.nix refactor(tvix/cli/default.nix): make eval tests and benches derivations 2024-04-22 13:15:22 +00:00