Skip to main content
Commonmark migration
Source Link

#Clojure, 11 bytes

Clojure, 11 bytes

#(+ % %2 1) 

Unoriginal. Just adds 1 to the sum of % and %2 (the arguments to the function).

#Clojure, 11 bytes

#(+ % %2 1) 

Unoriginal. Just adds 1 to the sum of % and %2 (the arguments to the function).

Clojure, 11 bytes

#(+ % %2 1) 

Unoriginal. Just adds 1 to the sum of % and %2 (the arguments to the function).

Source Link
Carcigenicate
  • 3.6k
  • 2
  • 23
  • 31

#Clojure, 11 bytes

#(+ % %2 1) 

Unoriginal. Just adds 1 to the sum of % and %2 (the arguments to the function).