papyrus
papyrus copied to clipboard
(Rust) repl
Hi, I'm new to rust I install rust on my machine, with an Win10 64 and tried to follow the instalation process running: rustup toolchain add nightly cargo +nightly install...
Rust version: ``` > rustup run nightly rustc --version rustc 1.63.0-nightly (c35035cef 2022-05-30) ``` Build output: ``` > cargo build error[E0557]: feature has been removed --> C:\Users\55549.SAMSUNG-BOOK\.cargo\registry\src\github.com-1ecc6299db9ec823\lock_api-0.4.2\src\lib.rs:91:42 | 91 |...
Rust version: ```shell $ rustup run nightly rustc --version rustc 1.59.0-nightly (e2116acae 2021-12-05) ``` Build output): ```shell $ cargo +nightly install papyrus ### many properly compiling packages ellided ### Compiling...
Python's REPL interprets Control+C as a way to stop a run-away REPL command. It immediately breaks with the exception `KeyboardInterrupt` (which Python programs can indeed handle, but that's another story)....
Hi, I installed papyrus using the follow command on Mac OS X, repl always print the same result as [out0]. $ cargo +stable install papyrus --no-default-features --features="format,runnable" [lib] papyrus=> 2...
Hello, this set of commits fixes a few issues - most prominently, `reduce_indent()` expects blocks to be indented by four tabs in order to work properly, but setting `.rustfmt.toml with...
I saw in your examples, that it's possible to inject local variables through `app_data`. Do you think it's feasible to inject a struct with reference to the current function scope...
Papyrus is unable to resolve literals. When you enter a literal like `true`, `21`, or `"papyrus rocks"` you get the following error ``` haven't handled expr variant Lit. Raise a...
Open mining format aka OMF is a new standard for mining data. More info is available here: https://github.com/gmggroup/omf In order to be able to use papyrus for data mining mining...
REPL's often accept Control+L as a signal to clear the terminal screen and present the prompt at the top again. This happens in bash, irb, and gore for example. Could...