From 3ac809d7f8c4f29bfcd0a52c7e168e783abc88df Mon Sep 17 00:00:00 2001 From: Arnaud Bailly Date: Wed, 25 Sep 2024 21:49:33 +0200 Subject: Extract IO operations to own module --- rust/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rust/src/main.rs') diff --git a/rust/src/main.rs b/rust/src/main.rs index 136e868..b0e8ed9 100644 --- a/rust/src/main.rs +++ b/rust/src/main.rs @@ -3,7 +3,7 @@ use std::{ io::{stdin, stdout}, }; -use lambda::{eval_file, repl}; +use lambda::io::{eval_file, repl}; fn main() { if args().count() > 1 { -- cgit v1.2.3