diff --git a/subjects/add/README.md b/subjects/add/README.md new file mode 100644 index 000000000..ad62351c7 --- /dev/null +++ b/subjects/add/README.md @@ -0,0 +1,13 @@ +## add + +### Instructions + +Write a function `Add` that will return the sum of two integers. + +### Expected function + +```js +function Add(a, b) { + +} +```