From ecda0d219cf7dc25bd9b0b76815a8880e20232c2 Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Thu, 18 Aug 2022 19:11:40 -0400 Subject: Added variadic functions. --- stdlib/source/test/lux.lux | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'stdlib/source/test/lux.lux') diff --git a/stdlib/source/test/lux.lux b/stdlib/source/test/lux.lux index 08a1f75cd..46ef4d8b0 100644 --- a/stdlib/source/test/lux.lux +++ b/stdlib/source/test/lux.lux @@ -1265,7 +1265,8 @@ (def _ (program args - (let [... times (for @.old 100 + (let [_ ("lux io log" "[[[0]]]") + ... times (for @.old 100 ... @.jvm 100 ... @.js 10 ... @.python 1 @@ -1273,9 +1274,11 @@ ... @.ruby 1 ... 100) ] - (<| io.io - ("lux io log" "Hello, World!") - ... _.run! - ... (_.times times) - ... ..test - )))) + (exec + ("lux io log" "[[[1]]]") + (<| io.io + ("lux io log" "Hello, World!") + ... _.run! + ... (_.times times) + ... ..test + ))))) -- cgit v1.2.3