| Jens Geyer | 944b8e6 | 2022-09-11 12:30:35 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Licensed to the Apache Software Foundation (ASF) under one |
| 3 | * /* |
| 4 | * Licensed to the Apache Software Foundation (ASF) under one |
| 5 | * or more contributor license agreements. See the NOTICE file |
| 6 | * distributed with this work for additional information |
| 7 | * regarding copyright ownership. The ASF licenses this file |
| 8 | * to you under the Apache License, Version 2.0 (the |
| 9 | * "License"); you may not use this file except in compliance |
| 10 | * with the License. You may obtain a copy of the License at |
| 11 | * |
| 12 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | * |
| 14 | * Unless required by applicable law or agreed to in writing, |
| 15 | * software distributed under the License is distributed on an |
| 16 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 17 | * KIND, either express or implied. See the License for the |
| 18 | * specific language governing permissions and limitations |
| 19 | * under the License. |
| 20 | */ |
| Mustafa Senol Cosar | 09c1f37 | 2018-04-04 15:25:28 +0300 | [diff] [blame] | 21 | |
| Jiayu Liu | 97323f3 | 2022-09-13 21:25:25 +0800 | [diff] [blame] | 22 | const string foo = "bar" |
| 23 | |
| Mustafa Senol Cosar | 09c1f37 | 2018-04-04 15:25:28 +0300 | [diff] [blame] | 24 | struct a_struct { |
| 25 | 1: bool im_true, |
| 26 | 2: bool im_false, |
| 27 | 3: i8 a_bite, |
| 28 | 4: i16 integer16, |
| 29 | 5: i32 integer32, |
| 30 | 6: i64 integer64, |
| 31 | 7: double double_precision, |
| 32 | 8: string some_characters, |
| 33 | 9: string zomg_unicode, |
| 34 | 10: bool what_who, |
| 35 | } |
| 36 | |
| 37 | service AService { |
| 38 | i32 a_procedure(1: i32 arg) |
| 39 | } |