Skip to content

Instantly share code, notes, and snippets.

@0x0dea
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 0x0dea/eb96b4d620f2b2034f4e to your computer and use it in GitHub Desktop.
Save 0x0dea/eb96b4d620f2b2034f4e to your computer and use it in GitHub Desktop.
<function name="factorial">
<parameters>
<parameter name="x" />
</parameters>
<body>
<if>
<condition>
<call function="<">
<arguments>
<argument value="x" />
<argument value="2" />
</arguments>
</call>
</condition>
<then>
<return value="1" />
</then>
<else>
<return>
<call function="*">
<arguments>
<argument value="x" />
<argument>
<call function="factorial">
<arguments>
<argument>
<call function="-">
<argument value="x" />
<argument value="1" />
</call>
</argument>
</arguments>
</call>
</argument>
</arguments>
</call>
</return>
</else>
</if>
</body>
</function>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment