Post Reply 
Advents of Code (programming challenges)
12-24-2022, 11:30 AM
Post: #23
RE: Advents of Code (programming challenges)
There are no examples on my web site, but the functionality is documented near the end of the section "Functions", under https://thomasokken.com/plus42/#equations.

An example of a named function calling itself could be

FAC(N):IF(N<=1:1:N*FAC(N-1))

The same syntax can be used for calling one function from another.
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Advents of Code (programming challenges) - Thomas Okken - 12-24-2022 11:30 AM



User(s) browsing this thread: 1 Guest(s)