Hash :
d05b6203
Author :
Thomas de Grivel
Date :
2024-07-29T14:08:40
%{a: (U8) 1, b: (U8) 2, c: (U8) 3}.a
(U8) 1
%{a: (U8) 1, b: (U8) 2, c: (U8) 3}.b
(U8) 2
%{a: (U8) 1, b: (U8) 2, c: (U8) 3}.c
(U8) 3
%{a: %{b: %{c: (U8) 1}}}.a
%{b: %{c: (U8) 1}}
%{a: %{b: %{c: (U8) 1}}}.a.b
%{c: (U8) 1}
%{a: %{b: %{c: (U8) 1}}}.a.b.c
(U8) 1
map = %{a: %{b: %{c: (U8) 1}}}
%{a: %{b: %{c: (U8) 1}}}
map
%{a: %{b: %{c: (U8) 1}}}
map.a
%{b: %{c: (U8) 1}}
map.a.b
%{c: (U8) 1}
map.a.b.c
(U8) 1
map.a.b.c + map.a.b.c
(U8) 2
"0 #{map.a.b.c} 2"
"0 1 2"
op = %KC3.Operator{}
%KC3.Operator{sym: :+, symbol_value: ?, operator_precedence: (U8) 0, operator_associativity: :left}
op.sym
:+