aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/demo/demo.odin7
1 files changed, 1 insertions, 6 deletions
diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin
index 298af6e32..206fa4a2d 100644
--- a/examples/demo/demo.odin
+++ b/examples/demo/demo.odin
@@ -946,12 +946,7 @@ deferred_procedure_associations :: proc() {
}
main :: proc() {
- x: map[int]int;
- x[123] = 123;
- fmt.println(x);
- fmt.println(x[123]);
-
- when false {
+ when true {
general_stuff();
union_type();
parametric_polymorphism();