From 388ef663082641b39113ff5f6d041b5e2eeef968 Mon Sep 17 00:00:00 2001 From: Sidi Liang <1467329765@qq.com> Date: Sat, 13 Feb 2021 21:43:07 +0800 Subject: [PATCH] Library: added comment for chr --- lib.nas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib.nas b/lib.nas index d01f309..3a0029d 100644 --- a/lib.nas +++ b/lib.nas @@ -116,7 +116,7 @@ var cmp=func(a,b) { return nasal_call_builtin_cmp(a,b); } -var chr=func(code) +var chr=func(code) #//Unlike in FG, this chr does not support Extended ASCII { return nasal_call_builtin_chr(code); }