Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

3
  • \$\begingroup\$ (1,&[+]...*) is one byte shorter, and the space after Z** isn't needed. \$\endgroup\$ Commented Jan 1, 2017 at 6:47
  • \$\begingroup\$ @BradGilbertb2gills Cool, I had no idea the Fibonacci sequence could be expressed that way. \$\endgroup\$ Commented Jan 1, 2017 at 18:55
  • \$\begingroup\$ Actually it works because &infix:<+> can accept 0,1 or 2 arguments. (&[+] is a short way of writing &infix:<+>). The WhateverCode * + * accepts exactly 2 arguments. (&[0]() == 0 so you have to have the 1 there to start off the sequence) \$\endgroup\$ Commented Jan 1, 2017 at 19:19