From de35d2d26a58b9979dcd274f2c1969e0504bc2a9 Mon Sep 17 00:00:00 2001 From: Daniel Weipert Date: Sun, 22 Sep 2024 23:13:24 +0200 Subject: nested namespace access @.@ --- test/test.test | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'test') diff --git a/test/test.test b/test/test.test index 149f1a6..58be29b 100644 --- a/test/test.test +++ b/test/test.test @@ -55,6 +55,7 @@ const inherited_type: type[test_type] = { } const object: inherited_type = inherited_type() -//object.test_field = "hey" -//object.test_function() => print($) -//object.nested.another_function(add = 2) +object.test_field = "hey" +object.test_function() => print($) +object.nested.another_field = 5 +object.nested.another_function(add = 2) => print($) -- cgit v1.2.3