Показаны различия между двумя версиями страницы.
| Следующая версия | Предыдущая версия | ||
|
ob:visual:log:en [2022/10/02 20:38] iadenisov создано |
ob:visual:log:en [2023/11/08 22:58] (текущий) iadenisov |
||
|---|---|---|---|
| Строка 1: | Строка 1: | ||
| + | Documentation for [[https:// | ||
| + | |||
| + | ====== Log module ====== | ||
| + | |||
| Print text information. | Print text information. | ||
| - | **PROCEDURE | + | PROCEDURE |
| Remove all text from the log. | Remove all text from the log. | ||
| - | **PROCEDURE | + | PROCEDURE |
| Output string. | Output string. | ||
| - | **PROCEDURE | + | PROCEDURE |
| New line. | New line. | ||
| - | **PROCEDURE | + | PROCEDURE |
| Writes a character value to the log. | Writes a character value to the log. | ||
| - | **PROCEDURE | + | PROCEDURE |
| Writes a real value to the log. | Writes a real value to the log. | ||
| - | **PROCEDURE | + | PROCEDURE |
| Writes a real value to the log with fixed decimal places. | Writes a real value to the log with fixed decimal places. | ||
| - | **PROCEDURE | + | PROCEDURE |
| Writes an integer value to the log. | Writes an integer value to the log. | ||
| - | **PROCEDURE | + | PROCEDURE |
| Writes a set value to the log. | Writes a set value to the log. | ||
| - | **PROCEDURE | + | PROCEDURE |
| + | |||
| + | Writes TRUE or FALSE boolean value to the log. | ||
| + | |||
| + | ===== Example ===== | ||
| + | |||
| + | < | ||
| + | MODULE Init; | ||
| + | |||
| + | IMPORT Log; | ||
| + | |||
| + | PROCEDURE Do; | ||
| + | BEGIN | ||
| + | | ||
| + | | ||
| + | END Do; | ||
| + | |||
| + | BEGIN | ||
| + | Do | ||
| + | END Init. | ||
| + | </ | ||
| + | |||
| + | [[https:// | ||
| - | Writes a Boolean value to the log. TRUE or FALSE. | ||