Исправлена константа pi в math.pys

This commit is contained in:
Mikhalkovich Stanislav 2026-01-02 11:15:09 +03:00
parent 8de8af7320
commit 9506d19493
5 changed files with 6 additions and 6 deletions

View file

@ -15,7 +15,7 @@ internal static class RevisionClass
public const string Major = "3";
public const string Minor = "11";
public const string Build = "0";
public const string Revision = "3714";
public const string Revision = "3715";
public const string MainVersion = Major + "." + Minor;
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;

View file

@ -1,4 +1,4 @@
%COREVERSION%=0
%REVISION%=3714
%MINOR%=11
%REVISION%=3715
%COREVERSION%=0
%MAJOR%=3

View file

@ -1 +1 @@
3.11.0.3714
3.11.0.3715

View file

@ -1 +1 @@
!define VERSION '3.11.0.3714'
!define VERSION '3.11.0.3715'

View file

@ -1,6 +1,6 @@
import PABCSystem
pi: float = 3.14
pi = 3.14159265358979
def sqrt(x: float) -> float:
return PABCSystem.sqrt(x)