Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
13
Task/Documentation/Arturo/documentation.arturo
Normal file
13
Task/Documentation/Arturo/documentation.arturo
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
f: function [x :integer, y :integer][
|
||||
;; description: « takes two integers and adds them up
|
||||
;; options: [
|
||||
;; double: « also multiply by two
|
||||
;; ]
|
||||
;; returns: :integer
|
||||
|
||||
result: x+y
|
||||
if not? null? attr 'double -> result: result * 2
|
||||
return result
|
||||
]
|
||||
|
||||
info'f
|
||||
Loading…
Add table
Add a link
Reference in a new issue