From 3b66255552856775ffaaefe7ce4a7c799c631dab Mon Sep 17 00:00:00 2001 From: Yar <45609162+CLoud-Maker@users.noreply.github.com> Date: Sun, 10 Jul 2022 14:39:25 +0300 Subject: [PATCH] Update function_varargs.txt The order of output key pairs is reversed. Related code example: # total(10,1,2,3,Jack=1123,John=2231,Inge=1560) --- programs/function_varargs.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programs/function_varargs.txt b/programs/function_varargs.txt index fc6f7d91..c585eb8a 100644 --- a/programs/function_varargs.txt +++ b/programs/function_varargs.txt @@ -3,6 +3,6 @@ a 10 single_item 1 single_item 2 single_item 3 -Inge 1560 -John 2231 Jack 1123 +John 2231 +Inge 1560