mirror of
https://github.com/1C-Company/v8-code-style.git
synced 2025-02-13 16:32:04 +02:00
13 lines
188 B
Plaintext
13 lines
188 B
Plaintext
Procedure WhileStatementInfiniteLoop(SomeArray) Export
|
|
|
|
Query = New Query;
|
|
|
|
Query.Text =
|
|
"SELECT
|
|
| 1";
|
|
|
|
While True Do
|
|
Query.ExecuteBatchWithIntermediateData();
|
|
EndDo;
|
|
|
|
EndProcedure |