Релиз с \(x,y)
This commit is contained in:
parent
fcb8ea082b
commit
248d03347f
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
%COREVERSION%=2
|
||||
%REVISION%=2852
|
||||
%MINOR%=7
|
||||
%REVISION%=2853
|
||||
%COREVERSION%=2
|
||||
%MAJOR%=3
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
3.7.2.2852
|
||||
3.7.2.2853
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
!define VERSION '3.7.2.2852'
|
||||
!define VERSION '3.7.2.2853'
|
||||
|
|
|
|||
6
TestSuite/unpacklparams3.pas
Normal file
6
TestSuite/unpacklparams3.pas
Normal 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.
|
||||
Loading…
Reference in a new issue