Justin TerAvest | 4996604 | 2019-07-15 09:53:01 -0600 | [diff] [blame^] | 1 | // 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 | |||||
7 | namespace codelab { | ||||
8 | |||||
9 | int GiveFive() { | ||||
10 | return 5; | ||||
11 | } | ||||
12 | |||||
13 | int Multiply(int x, int y) { | ||||
14 | // TODO(reader): Implement this. | ||||
15 | return -1; | ||||
16 | } | ||||
17 | |||||
18 | } // namespace codelab |