| // Copyright 2021 The Fuchsia Authors. All rights reserved. | |
| // Use of this source code is governed by a BSD-style license that can be | |
| // found in the LICENSE file. | |
| library banjo.examples.constants; | |
| const SOME_VALUE uint32 = 12345; | |
| const ANOTHER_VALUE int8 = 32; | |
| const DO_IT bool = false; | |
| const FANCY_PANTS int16 = 0xFF; | |
| @namespaced | |
| const NAMESPACED_VALUE uint8 = 32; |