Bill Allombert on Sun, 05 Aug 2018 17:44:21 +0200 |
[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]
Re: Parser inline function problem |
On Sun, Aug 05, 2018 at 03:24:44PM +0000, Jacques Gélinas wrote: > Is it possible to stop the parser from searching for inline functions ? > > # v=version() > %1 = [2, 11, 0] > # print("v"(v)); > *** at top-level: print("v"(v)) > *** ^------- > *** not a function in function call I do not understand what you want to do. print("v"(v)) is invalid because "v"(v) is invalid, since "v" is not a function (it is a character string). Cheers, Bill.