diff --git a/add_LB.R b/add_LB.R new file mode 100644 index 0000000..f355ba7 --- /dev/null +++ b/add_LB.R @@ -0,0 +1,5 @@ +## A simple function for adding 2 numbers +## written by Lara Breitkreutz +add <- function(a, b) { + return(a + b) +} \ No newline at end of file