RosettaCodeData/Task/Variables/D/variables.d
2023-07-01 13:44:08 -04:00

3 lines
211 B
D

float bite = 36.321; ///_Defines a floating-point number (float), "bite", with a value of 36.321
float[3] bites; ///_Defines a static array of 3 floats
float[] more_bites; ///_Defines a dynamic array of floats