Avoid Debuggers with Functional Programming

Debug your code with pure functions and a tracer

Edward Krueger
Towards Data Science
6 min readMar 23, 2021

--

By: Edward Krueger and Douglas Franklin.

Photo by Fotis Fotopoulos on Unsplash

Introduction

Our goal is to have a codebase of pure functions that we can decorate with a tracer. By applying this decorator to pure functions, we can debug code without using a cumbersome debugger. This…

--

--