this repo has no description
at develop 787 B view raw
1/*** 2!Test 3extra_files: 4- json_input_1.json 5expected: !Result 6 solution: !Solution 7 int_set: !!set {1, 2, 4, 5, 7, 9} 8 float_set: !!set {1.0, 2.0} 9 array_1d_float: [1.0, 2.0, 3.0] 10 array_2d_bool: [[true]] 11 array_3d_int: [[[1, 2], [3, 4]], [[5, 6], [7, 8]]] 12 array_opt_float: [1.5, null] 13 x: 1 14 y: 2.0 15 z: true 16 o: null 17***/ 18 19set of int: int_set :: add_to_output; 20set of float: float_set :: add_to_output; 21 22array [1..3] of float: array_1d_float :: add_to_output; 23array [1..1, 1..1] of bool: array_2d_bool :: add_to_output; 24array [1..2, 1..2, 1..2] of int: array_3d_int :: add_to_output; 25 26array [1..2] of opt float: array_opt_float :: add_to_output; 27 28int: x :: add_to_output; 29float: y :: add_to_output; 30bool: z :: add_to_output; 31 32opt int: o :: add_to_output;