#repl #interactive #editor #repl-like

app rie

类似REPL的交互式代码编辑器

1 个不稳定版本

使用旧Rust 2015

0.1.0 2017年10月4日

#101 in #repl

MIT 许可证

10KB
240

rie

RIE是Rust交互式编辑器。

基于交互式源代码编辑的类似REPL的体验。

# cargo install rie
# rie

>> :2 * 2
= 4

>> let x = 2
= 
>> :x * 2
= 4

>> let f = |x : i32| x * x
= 
>> :f(4)
= 16

>> %
0 fn main() {
1     let x = 2;
2     let f = |x : i32| x * x;
3 }
>> %d 2
0 fn main() {
1     let x = 2;
2 }
>> 

依赖

~3MB
~59K SLoC