morangorin

Results 5 comments of morangorin

For documentation, what would be the list of missing features if one was not to use the `unsafe` package in `reflect` (with the classic interpreter)?

Thank you for the quick answer. I am using my own REPL and I did not realize that I could switch from the fast interpreter to the classic one. Except...

That is great. This is definitely good enough to start experimenting. Thank you very much.

Using interface{} would work. Another possible solution would be to declare a third structure such as, following the example above: ```go type StatusAddress struct { *Status *Address } ``` and...