kari
                                
                                 kari copied to clipboard
                                
                                    kari copied to clipboard
                            
                            
                            
                        Consider switching order of `define` arguments
Currently, define takes an anonymous function and a function name, in that order:
[ do things ] :do_things define
It might be better to switch the order of the arguments:
:do_things [ do things ] define
It doesn't make a lot of difference in short examples like this, but it might make functions that take up multiple lines more readable.
While I'm changing things, might as well consider renaming define to def. It's a common enough thing that it warrants a shortened name.