Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
9
Task/Function-prototype/Jq/function-prototype.jq
Normal file
9
Task/Function-prototype/Jq/function-prototype.jq
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
def Func: # no arguments
|
||||
|
||||
def Func(a;b): # two arguments
|
||||
|
||||
def Vararg(v):
|
||||
v as [$a1, $a2] .... # if v is an array, then $a1 will be the first item specified by v, or else null, and so on
|
||||
|
||||
def Vararg(a; v):
|
||||
v as [$a1, $a2] .... # if v is an array, then $a1 will be the first item specified by v, or else null, and so on
|
||||
Loading…
Add table
Add a link
Reference in a new issue