Real World Uses of Tacit Programming: Part 1 of 2

Introduction

Tacit Programming, also called point-free style, is a way to write functions without specifying the arguments. While functional programming languages have more abilities to leverage this style, there is still two key things you can use point-free style to help with in JavaScript, Python, and Lua that I wanted to cover today. Specifically reducing the amount of arguments for functions, and aiding in composition by writing less code.
Continue reading “Real World Uses of Tacit Programming: Part 1 of 2”