Исправлена справка по exit, break

This commit is contained in:
miks1965 2018-10-07 13:55:36 +03:00
parent 70a83e7f47
commit 9aad3c7d3f
6 changed files with 14 additions and 8 deletions

View file

@ -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;

View file

@ -1,4 +1,4 @@
%MINOR%=4
%REVISION%=1822
%COREVERSION%=2
%REVISION%=1825
%MINOR%=4
%MAJOR%=3

Binary file not shown.

View file

@ -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>

View file

@ -1 +1 @@
!define VERSION '3.4.2.1822'
!define VERSION '3.4.2.1825'

View file

@ -0,0 +1,7 @@
var c: string := '123'[1:3];
var c1: string := '123'[1];
begin
Assert(c='12');
Assert(c1='1')
end.