Currying

Introduction

All functions that are partially called are autocurried by the compiler.

You can disable this functionality to work with third party libraries already curried or variadic functions.

To disable autocurry use the keyword ... or ary between the function name and the arguments, both keywords are accepted.

Example disable currying

Hello John!