1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-11 17:24:29 +02:00

Fixed almost pi

22/7ths is closer to pi than 11/7ths. Almost twice as close!
This commit is contained in:
Ian Bertolacci
2015-07-14 17:32:00 -07:00
parent df0cd1395d
commit 6a6673b154

View File

@@ -91,7 +91,7 @@ var intFromReal = myReal : int;
var intFromReal2: int = myReal : int;
// consts are constants, they cannot be changed after set in runtime
const almostPi: real = 11.0/7.0;
const almostPi: real = 22.0/7.0;
// params are constants whose value must be known statically at compile time
// Like consts, they cannot be changed during runtime
param compileTimeConst: int = 16;