in mac os ventura should just install ruby with homebrew instead of rbenv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NUMBER1 := 10 | |
NUMBER2 := 5 | |
#Addition | |
ADD := $(shell echo ${NUMBER1}+${NUMBER2} | bc) | |
#Subtraction | |
SUBTRACT := $(shell echo ${NUMBER1}-${NUMBER2} | bc) | |
#Multiplication |