Релиз с \(x,y)

This commit is contained in:
Mikhalkovich Stanislav 2021-03-07 20:42:06 +03:00
parent fcb8ea082b
commit 248d03347f
5 changed files with 11 additions and 5 deletions

View file

@ -15,7 +15,7 @@ internal static class RevisionClass
public const string Major = "3";
public const string Minor = "7";
public const string Build = "2";
public const string Revision = "2852";
public const string Revision = "2853";
public const string MainVersion = Major + "." + Minor;
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;

View file

@ -1,4 +1,4 @@
%COREVERSION%=2
%REVISION%=2852
%MINOR%=7
%REVISION%=2853
%COREVERSION%=2
%MAJOR%=3

View file

@ -1 +1 @@
3.7.2.2852
3.7.2.2853

View file

@ -1 +1 @@
!define VERSION '3.7.2.2852'
!define VERSION '3.7.2.2853'

View file

@ -0,0 +1,6 @@
begin
var pairs := Arr(1..3).Pairwise;
var pairs2 := pairs.ZipTuple(pairs.Skip(1));
Assert(pairs2.Select(\(\(a,b),\(c,d)) -> (a, b, c, d)).SequenceEqual(Seq((1,2,2,3))));
end.