exit — 终止 HDevelop。
exit( : : : )
exit 命令将终止 HDevelop。该算子等同于菜单项
文件 -> 退出。在内部实现及导出的 C++ 代码中,将调用 C 函数
exit(0)。
read_image (Image, 'fabrik')
intensity (Image, Image, Mean, Deviation)
open_file ('intensity.txt', 'output', FileHandle)
fwrite_string (FileHandle, Mean + ' ' + Deviation)
close_file (FileHandle)
exit ()
exit 向 HDevelop 的调用环境(即操作系统)返回 0(表示正常)。
基础