Created
October 31, 2014 17:37
-
-
Save mklemme/bfff8dd0530b3dbfa529 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
workout: { // workout table | |
name: "Chest", | |
role: "strength", | |
exercises: [ // exercise table | |
{ | |
name: "Bench press", | |
sets: [ | |
{ | |
name: "set-1", | |
reps: 10, | |
weight: null, | |
rest: 45 | |
}, | |
{ | |
name: "set-2", | |
reps: 10, | |
weight: null, | |
rest: 45 | |
}, | |
{ | |
name: "set-3", | |
reps: 10, | |
weight: null, | |
rest: 45 | |
}, | |
{ | |
name: "set-4", | |
reps: 10, | |
weight: null, | |
rest: 45 | |
}, | |
{ | |
name: "set-5", | |
reps: 10, | |
weight: null, | |
rest: 45 | |
} | |
] | |
}, // end bench | |
{ | |
name: "bike", | |
sets: [ | |
{ | |
name: "set-1", | |
time: 20, | |
weight: null, | |
rest: 45 | |
} | |
] | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment