# 常量

前言

常量使用const来定义,只能读取,不能修改

# 1.使用

const PIE:f32 = 3.14;
1