diff options
| author | gingerBill <bill@gingerbill.org> | 2021-11-04 00:50:48 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-11-04 00:50:48 +0000 |
| commit | 1980f32bd6636edf7f8a1ba0d0010f23b5292488 (patch) | |
| tree | 90e6d4b4d367836d9eaccaccd82ceafe4df085d6 /examples | |
| parent | 9ab71ca0da6a68806ff9825000799e8ddfbfc341 (diff) | |
Correct demo.odin
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/demo/demo.odin | 66 |
1 files changed, 33 insertions, 33 deletions
diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin index d12df2776..e43ac2548 100644 --- a/examples/demo/demo.odin +++ b/examples/demo/demo.odin @@ -2422,39 +2422,39 @@ matrix_type :: proc() { main :: proc() { when true { - // the_basics() - // control_flow() - // named_proc_return_parameters() - // explicit_procedure_overloading() - // struct_type() - // union_type() - // using_statement() - // implicit_context_system() - // parametric_polymorphism() - // array_programming() - // map_type() - // implicit_selector_expression() - // partial_switch() - // cstring_example() - // bit_set_type() - // deferred_procedure_associations() - // reflection() - // quaternions() - // unroll_for_statement() - // where_clauses() - // foreign_system() - // ranged_fields_for_array_compound_literals() - // deprecated_attribute() - // range_statements_with_multiple_return_values() - // threading_example() - // soa_struct_layout() - // constant_literal_expressions() - // union_maybe() - // explicit_context_definition() - // relative_data_types() - // or_else_operator() - // or_return_operator() - // arbitrary_precision_maths() + the_basics() + control_flow() + named_proc_return_parameters() + explicit_procedure_overloading() + struct_type() + union_type() + using_statement() + implicit_context_system() + parametric_polymorphism() + array_programming() + map_type() + implicit_selector_expression() + partial_switch() + cstring_example() + bit_set_type() + deferred_procedure_associations() + reflection() + quaternions() + unroll_for_statement() + where_clauses() + foreign_system() + ranged_fields_for_array_compound_literals() + deprecated_attribute() + range_statements_with_multiple_return_values() + threading_example() + soa_struct_layout() + constant_literal_expressions() + union_maybe() + explicit_context_definition() + relative_data_types() + or_else_operator() + or_return_operator() + arbitrary_precision_maths() matrix_type() } } |