Correct demo.odin

This commit is contained in:
gingerBill
2021-11-04 00:50:48 +00:00
parent 9ab71ca0da
commit 1980f32bd6
+33 -33
View File
@@ -2422,39 +2422,39 @@ matrix_type :: proc() {
main :: proc() { main :: proc() {
when true { when true {
// the_basics() the_basics()
// control_flow() control_flow()
// named_proc_return_parameters() named_proc_return_parameters()
// explicit_procedure_overloading() explicit_procedure_overloading()
// struct_type() struct_type()
// union_type() union_type()
// using_statement() using_statement()
// implicit_context_system() implicit_context_system()
// parametric_polymorphism() parametric_polymorphism()
// array_programming() array_programming()
// map_type() map_type()
// implicit_selector_expression() implicit_selector_expression()
// partial_switch() partial_switch()
// cstring_example() cstring_example()
// bit_set_type() bit_set_type()
// deferred_procedure_associations() deferred_procedure_associations()
// reflection() reflection()
// quaternions() quaternions()
// unroll_for_statement() unroll_for_statement()
// where_clauses() where_clauses()
// foreign_system() foreign_system()
// ranged_fields_for_array_compound_literals() ranged_fields_for_array_compound_literals()
// deprecated_attribute() deprecated_attribute()
// range_statements_with_multiple_return_values() range_statements_with_multiple_return_values()
// threading_example() threading_example()
// soa_struct_layout() soa_struct_layout()
// constant_literal_expressions() constant_literal_expressions()
// union_maybe() union_maybe()
// explicit_context_definition() explicit_context_definition()
// relative_data_types() relative_data_types()
// or_else_operator() or_else_operator()
// or_return_operator() or_return_operator()
// arbitrary_precision_maths() arbitrary_precision_maths()
matrix_type() matrix_type()
} }
} }