From 8ab144f3c5dcf9ba092d7dbe5dcc6a89b9aad567 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Emmanuel=20Beno=C3=AEt?= <tseeker@nocternity.net>
Date: Mon, 2 Jan 2023 17:45:19 +0100
Subject: [PATCH] Interpreter - Move function call arguments

---
 src/interpreter/callable.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/interpreter/callable.rs b/src/interpreter/callable.rs
index adbfe64..26a8390 100644
--- a/src/interpreter/callable.rs
+++ b/src/interpreter/callable.rs
@@ -14,6 +14,6 @@ pub trait Callable: Debug + ToString {
     fn call(
         &self,
         environment: &EnvironmentRef,
-        arguments: &Vec<Value>,
+        arguments: Vec<Value>,
     ) -> Result<Value, InterpreterError>;
 }