=============================================================================
()
| 121 | // ============================================================================= |
| 122 | |
| 123 | func main() { |
| 124 | |
| 125 | // Initialize the system for use. |
| 126 | sys := System{ |
| 127 | Xenia: Xenia{}, |
| 128 | Pillar: Pillar{}, |
| 129 | } |
| 130 | |
| 131 | if err := Copy(&sys, 3); err != io.EOF { |
| 132 | fmt.Println(err) |
| 133 | } |
| 134 | } |