blob: fe039edbf9e62b380bf9083ed1064882b96c9f7e [file] [log] [blame]
Jens Geyer944b8e62022-09-11 12:30:35 +02001/*
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 Cosar09c1f372018-04-04 15:25:28 +030021
Jiayu Liu97323f32022-09-13 21:25:25 +080022const string foo = "bar"
23
Mustafa Senol Cosar09c1f372018-04-04 15:25:28 +030024struct 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
37service AService {
38 i32 a_procedure(1: i32 arg)
39}