際際滷

際際滷Share a Scribd company logo
A Gentle Introduction To The Basics Of Functional
Programming
Onorio Catenacci,
IT Trainer
United Shore, Troy, MI
2
Agenda
Dispelling Myths About FP
What is Immutability and Why Should You Care?
What Are First-Class Functions?
Built-in Regular Expressions
Recursion vs. Iteration
Summary/Review
3
Myths About FP
Adopting FP Ideas Means You Must
Stop Writing OO Code
4
Myths About FP
Adopting FP Ideas Means You Must
Stop Writing OO Code
Learning a New Approach Means
Discarding The Old One.
5
Myths About FP
Adopting FP Ideas Means You Must
Stop Writing OO Code
FP Doesnt Have Classes.
6
Myths About FP
Adopting FP Ideas Means You Must
Stop Writing OO Code
You Cant Write FP in Java or C#.
7
Myths About FP
FP is a New Idea
8
Myths About FP
You Can Only Write FP in an FP
Language
9
Myths About FP
OO is More Natural
10
Immutability
What is Immutability and Why Should
You Care
i++;
11
Immutability
Languages Mostly Help Or Hinder Us In
Terms Of The Defaults!
Developers Wont Fight Language
Defaults!
12
First Class Functions
What Do We Mean When We Say
Function In FP?
let square n = n * n
13
First Class Functions
What is a First Class Function?
14
First Class Functions
What is a First Class Function?
First Class Functions Serve Analogous
Purpose to Polymorphism in OO.
15
First Class Functions
let iseven n = n % 2 == 0
let isodd n = not iseven n
let EvenIsDifferent fnForEven fnForOdd n =
if iseven n then
fnForEven n
else
fnForOdd n
16
Built-In Regular Expressions
let regexDemo fn value =
match (fn value) with
| true -> "It's true"
| false -> "Nope it's false";;
regexDemo iseven 3;;
// val it : string = "Nope it's false"
17
Recursion vs. Iteration
By Default Values Are Immutable In FP
Cannot mutate index into list
for i = 0; i++; i < length(list) //Not allowed!
18
Recursion vs. Iteration
Can recursively call function on list:
let rec sumList lst =
match lst with
| [] -> 0 //Matches empty list
| hd :: tl -> hd + sumList tl ;;
let l = [1..100];;
sumList l;; // 5050
19
Summary/Review
 FP doesnt mean Discard OO
 FP has default immutability

FP has 1st
class functions
 FP emphasizes recursion over
iteration.
20
Feedback
Twitter: @OldDutchCap
E-mail: catenacci@ieee.org
Also please fill out survey:
https://tinyurl.com/dcode-fp
Survey is anonymous.

More Related Content

More from OnorioCatenacci (6)

Basics Of Elixir and Phoenix
Basics Of Elixir and Phoenix Basics Of Elixir and Phoenix
Basics Of Elixir and Phoenix
OnorioCatenacci
Building An Elixir Package
Building An Elixir PackageBuilding An Elixir Package
Building An Elixir Package
OnorioCatenacci
Alternate languages for the CLR
Alternate languages for the CLRAlternate languages for the CLR
Alternate languages for the CLR
OnorioCatenacci
A RESTful Interface for Erlang Code using Webmachine
A RESTful Interface for Erlang Code using WebmachineA RESTful Interface for Erlang Code using Webmachine
A RESTful Interface for Erlang Code using Webmachine
OnorioCatenacci
A Sip Of Elixir
A Sip Of ElixirA Sip Of Elixir
A Sip Of Elixir
OnorioCatenacci
Shell scripting with f
Shell scripting with fShell scripting with f
Shell scripting with f
OnorioCatenacci
Basics Of Elixir and Phoenix
Basics Of Elixir and Phoenix Basics Of Elixir and Phoenix
Basics Of Elixir and Phoenix
OnorioCatenacci
Building An Elixir Package
Building An Elixir PackageBuilding An Elixir Package
Building An Elixir Package
OnorioCatenacci
Alternate languages for the CLR
Alternate languages for the CLRAlternate languages for the CLR
Alternate languages for the CLR
OnorioCatenacci
A RESTful Interface for Erlang Code using Webmachine
A RESTful Interface for Erlang Code using WebmachineA RESTful Interface for Erlang Code using Webmachine
A RESTful Interface for Erlang Code using Webmachine
OnorioCatenacci
Shell scripting with f
Shell scripting with fShell scripting with f
Shell scripting with f
OnorioCatenacci

Recently uploaded (20)

STARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to PonderSTARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to Ponder
anupriti
際際滷s from Perth MuleSoft Meetup March 2025
際際滷s from Perth MuleSoft Meetup March 2025際際滷s from Perth MuleSoft Meetup March 2025
際際滷s from Perth MuleSoft Meetup March 2025
Michael Price
SAP Automation with UiPath: Solution Accelerators and Best Practices - Part 6...
SAP Automation with UiPath: Solution Accelerators and Best Practices - Part 6...SAP Automation with UiPath: Solution Accelerators and Best Practices - Part 6...
SAP Automation with UiPath: Solution Accelerators and Best Practices - Part 6...
DianaGray10
Research Data Management (RDM): the management of dat in the research process
Research Data Management (RDM): the management of dat in the research processResearch Data Management (RDM): the management of dat in the research process
Research Data Management (RDM): the management of dat in the research process
HeilaPienaar
Build Your Uber Clone App with Advanced Features
Build Your Uber Clone App with Advanced FeaturesBuild Your Uber Clone App with Advanced Features
Build Your Uber Clone App with Advanced Features
V3cube
Scalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by UdaiScalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by Udai
Udaiappa Ramachandran
Getting the Best of TrueDEM April News & Updates
Getting the Best of TrueDEM  April News & UpdatesGetting the Best of TrueDEM  April News & Updates
Getting the Best of TrueDEM April News & Updates
panagenda
How to manage technology risk and corporate growth
How to manage technology risk and corporate growthHow to manage technology risk and corporate growth
How to manage technology risk and corporate growth
Arlen Meyers, MD, MBA
Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5
Margaret Maynard-Reid
A General introduction to Ad ranking algorithms
A General introduction to Ad ranking algorithmsA General introduction to Ad ranking algorithms
A General introduction to Ad ranking algorithms
Buhwan Jeong
Automated Engineering of Domain-Specific Metamorphic Testing Environments
Automated Engineering of Domain-Specific Metamorphic Testing EnvironmentsAutomated Engineering of Domain-Specific Metamorphic Testing Environments
Automated Engineering of Domain-Specific Metamorphic Testing Environments
Pablo G坦mez Abajo
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No KubernetesJava on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
VictorSzoltysek
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptxRBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
quinlan4
Sugarlab AI: How Much Does an XXX AI Porn Generator Cost in 2025
Sugarlab AI: How Much Does an XXX AI Porn Generator Cost in 2025Sugarlab AI: How Much Does an XXX AI Porn Generator Cost in 2025
Sugarlab AI: How Much Does an XXX AI Porn Generator Cost in 2025
Sugarlab AI
2025-04-05 - Block71 Event - The Landscape of GenAI and Ecosystem.pdf
2025-04-05 - Block71 Event - The Landscape of GenAI and Ecosystem.pdf2025-04-05 - Block71 Event - The Landscape of GenAI and Ecosystem.pdf
2025-04-05 - Block71 Event - The Landscape of GenAI and Ecosystem.pdf
Ivan Tang
Columbia Weather Systems - Product Overview
Columbia Weather Systems - Product OverviewColumbia Weather Systems - Product Overview
Columbia Weather Systems - Product Overview
Columbia Weather Systems
STRING FUNCTIONS IN JAVA BY N SARATH KUMAR
STRING FUNCTIONS IN JAVA BY N SARATH KUMARSTRING FUNCTIONS IN JAVA BY N SARATH KUMAR
STRING FUNCTIONS IN JAVA BY N SARATH KUMAR
Sarathkumar Narsupalli
Smarter RAG Pipelines: Scaling Search with Milvus and Feast
Smarter RAG Pipelines: Scaling Search with Milvus and FeastSmarter RAG Pipelines: Scaling Search with Milvus and Feast
Smarter RAG Pipelines: Scaling Search with Milvus and Feast
Zilliz
How Air Coil Inductors Work By Cet Technology
How Air Coil Inductors Work By Cet TechnologyHow Air Coil Inductors Work By Cet Technology
How Air Coil Inductors Work By Cet Technology
CET Technology
AI in Talent Acquisition: Boosting Hiring
AI in Talent Acquisition: Boosting HiringAI in Talent Acquisition: Boosting Hiring
AI in Talent Acquisition: Boosting Hiring
Beyond Chiefs
STARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to PonderSTARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to Ponder
anupriti
際際滷s from Perth MuleSoft Meetup March 2025
際際滷s from Perth MuleSoft Meetup March 2025際際滷s from Perth MuleSoft Meetup March 2025
際際滷s from Perth MuleSoft Meetup March 2025
Michael Price
SAP Automation with UiPath: Solution Accelerators and Best Practices - Part 6...
SAP Automation with UiPath: Solution Accelerators and Best Practices - Part 6...SAP Automation with UiPath: Solution Accelerators and Best Practices - Part 6...
SAP Automation with UiPath: Solution Accelerators and Best Practices - Part 6...
DianaGray10
Research Data Management (RDM): the management of dat in the research process
Research Data Management (RDM): the management of dat in the research processResearch Data Management (RDM): the management of dat in the research process
Research Data Management (RDM): the management of dat in the research process
HeilaPienaar
Build Your Uber Clone App with Advanced Features
Build Your Uber Clone App with Advanced FeaturesBuild Your Uber Clone App with Advanced Features
Build Your Uber Clone App with Advanced Features
V3cube
Scalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by UdaiScalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by Udai
Udaiappa Ramachandran
Getting the Best of TrueDEM April News & Updates
Getting the Best of TrueDEM  April News & UpdatesGetting the Best of TrueDEM  April News & Updates
Getting the Best of TrueDEM April News & Updates
panagenda
How to manage technology risk and corporate growth
How to manage technology risk and corporate growthHow to manage technology risk and corporate growth
How to manage technology risk and corporate growth
Arlen Meyers, MD, MBA
Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5
Margaret Maynard-Reid
A General introduction to Ad ranking algorithms
A General introduction to Ad ranking algorithmsA General introduction to Ad ranking algorithms
A General introduction to Ad ranking algorithms
Buhwan Jeong
Automated Engineering of Domain-Specific Metamorphic Testing Environments
Automated Engineering of Domain-Specific Metamorphic Testing EnvironmentsAutomated Engineering of Domain-Specific Metamorphic Testing Environments
Automated Engineering of Domain-Specific Metamorphic Testing Environments
Pablo G坦mez Abajo
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No KubernetesJava on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
VictorSzoltysek
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptxRBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
quinlan4
Sugarlab AI: How Much Does an XXX AI Porn Generator Cost in 2025
Sugarlab AI: How Much Does an XXX AI Porn Generator Cost in 2025Sugarlab AI: How Much Does an XXX AI Porn Generator Cost in 2025
Sugarlab AI: How Much Does an XXX AI Porn Generator Cost in 2025
Sugarlab AI
2025-04-05 - Block71 Event - The Landscape of GenAI and Ecosystem.pdf
2025-04-05 - Block71 Event - The Landscape of GenAI and Ecosystem.pdf2025-04-05 - Block71 Event - The Landscape of GenAI and Ecosystem.pdf
2025-04-05 - Block71 Event - The Landscape of GenAI and Ecosystem.pdf
Ivan Tang
Columbia Weather Systems - Product Overview
Columbia Weather Systems - Product OverviewColumbia Weather Systems - Product Overview
Columbia Weather Systems - Product Overview
Columbia Weather Systems
STRING FUNCTIONS IN JAVA BY N SARATH KUMAR
STRING FUNCTIONS IN JAVA BY N SARATH KUMARSTRING FUNCTIONS IN JAVA BY N SARATH KUMAR
STRING FUNCTIONS IN JAVA BY N SARATH KUMAR
Sarathkumar Narsupalli
Smarter RAG Pipelines: Scaling Search with Milvus and Feast
Smarter RAG Pipelines: Scaling Search with Milvus and FeastSmarter RAG Pipelines: Scaling Search with Milvus and Feast
Smarter RAG Pipelines: Scaling Search with Milvus and Feast
Zilliz
How Air Coil Inductors Work By Cet Technology
How Air Coil Inductors Work By Cet TechnologyHow Air Coil Inductors Work By Cet Technology
How Air Coil Inductors Work By Cet Technology
CET Technology
AI in Talent Acquisition: Boosting Hiring
AI in Talent Acquisition: Boosting HiringAI in Talent Acquisition: Boosting Hiring
AI in Talent Acquisition: Boosting Hiring
Beyond Chiefs

Gentle Introduction To Funcitonal Programming - Detroit.Code

Editor's Notes

  • #3: Dispelling myths about FP Whats immutability and why does it matter? Whats a first class function? Built-in regular expressions Recursion vs. iteration Summary/review
  • #4: Someone seems to have gotten the mistaken notion that adopting FP means dropping OO; nothing could be further from the truth. Lets look at a few of the assumptions underlying that: 1.) Learning a new approach means abandoning an old approach. 2.) FP doesnt have classes
  • #5: Someone seems to have gotten the mistaken notion that adopting FP means dropping OO; nothing could be further from the truth. Lets look at a few of the assumptions underlying that: 1.) Learning a new approach means abandoning an old approach. 2.) FP doesnt have classes
  • #6: Someone seems to have gotten the mistaken notion that adopting FP means dropping OO; nothing could be further from the truth. Lets look at a few of the assumptions underlying that: 1.) Learning a new approach means abandoning an old approach. 2.) FP doesnt have classes
  • #7: Someone seems to have gotten the mistaken notion that adopting FP means dropping OO; nothing could be further from the truth. Lets look at a few of the assumptions underlying that: 1.) Learning a new approach means abandoning an old approach. 2.) FP doesnt have classes