blob: 77e165a9e12b020badd454f850b29a7e21f731fb [file] [log] [blame]
Justin TerAvest49966042019-07-15 09:53:01 -06001// Copyright 2019 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "codelab/codelab.h"
6
7namespace codelab {
8
9int GiveFive() {
10 return 5;
11}
12
13int Multiply(int x, int y) {
14 // TODO(reader): Implement this.
15 return -1;
16}
17
18} // namespace codelab