Исправлена справка по exit, break
This commit is contained in:
parent
70a83e7f47
commit
9aad3c7d3f
|
|
@ -15,7 +15,7 @@ internal static class RevisionClass
|
|||
public const string Major = "3";
|
||||
public const string Minor = "4";
|
||||
public const string Build = "2";
|
||||
public const string Revision = "1822";
|
||||
public const string Revision = "1825";
|
||||
|
||||
public const string MainVersion = Major + "." + Minor;
|
||||
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
%MINOR%=4
|
||||
%REVISION%=1822
|
||||
%COREVERSION%=2
|
||||
%REVISION%=1825
|
||||
%MINOR%=4
|
||||
%MAJOR%=3
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -51,10 +51,9 @@ exit</H1>
|
|||
</blockquote>
|
||||
<p>Вызов <code><b>exit</b></code> в разделе операторов
|
||||
основной программы приводит к ее немедленному завершению.</p>
|
||||
<p>Ñëåäóåò îòìåòèòü, ÷òî â <b>
|
||||
PascalABC.NET</b> (â îòëè÷èå îò Borland Pascal è
|
||||
Borland Delphi) <code><b>break</b></code>, <code><b>continue</b></code>
|
||||
è <code><b>exit</b></code> ÿâëÿþòñÿ íå ïðîöåäóðàìè, à èìåííî îïåðàòîðàìè.</p>
|
||||
<p>Áîëåå òî÷íî, <code><b>break</b></code>, <code><b>continue</b></code>
|
||||
è <code><b>exit</b></code> â <b>
|
||||
PascalABC.NET</b> ÿâëÿþòñÿ îïåðàòîðàìè âûçîâà ñïåöèàëüíûõ âíóòðåííèõ ïðîöåäóð.</p>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
!define VERSION '3.4.2.1822'
|
||||
!define VERSION '3.4.2.1825'
|
||||
|
|
|
|||
7
TestSuite/typed_var_init1.pas
Normal file
7
TestSuite/typed_var_init1.pas
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
var c: string := '123'[1:3];
|
||||
var c1: string := '123'[1];
|
||||
|
||||
begin
|
||||
Assert(c='12');
|
||||
Assert(c1='1')
|
||||
end.
|
||||
Loading…
Reference in a new issue