summaryrefslogtreecommitdiff
path: root/decks.js
blob: 166e825f2e8493f446b3cd6a244082c8c897b4fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
let decks = [
  { name: 'Basic Set'
  , pairs: [
    [ 'hello', 'world' ],
  ]},
  { name: 'Medium Set'
  , pairs: [
    [ 'greetings', 'world' ],
    [ 'bonjour', 'world' ],
  ]},
  { name: 'Advanced Set'
  , pairs: [
    [ 'salutations', 'world' ],
    [ 'aloha', 'world' ],
    [ 'zuzu', 'world' ],
  ]},
];