Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
byteshiva authored Mar 22, 2019
1 parent 47abf93 commit 5423a33
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions functionalprogramming/day182/funcday182/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const R = require('ramda');

const rrange1 = R.range(1, 5); //=> [1, 2, 3, 4]
const rrange2 = R.range(50, 53); //=> [50, 51, 52]

console.log(rrange1, rrange2);
12 changes: 12 additions & 0 deletions functionalprogramming/day182/funcday182/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "funcday182",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC"
}

0 comments on commit 5423a33

Please sign in to comment.