This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package main
// 虽然从底层而言,所有的数据都是由比特组成,但计算机一般操作的是固定大小的数,
// 如整数、浮点数、比特数组、内存地址等。
// 进一步将这些数组织在一起,就可表达更多的对象,例如数据包、像素点、诗歌,甚至其他任何对象。
// Go语言提供了丰富的数据组织形式,这依赖于Go语言内置的数据类型。
// 这些内置的数据类型,兼顾了硬件的特性和表达复杂数据结构的便捷性。