eg_disp.for

来自「开放源码的编译器open watcom 1.6.0版的源代码」· FOR 代码 · 共 19 行

FOR
19
字号
	include 'graphapi.fi'
	include 'graph.fi'

	character*30 name

	call _setvideomode( _TEXTC80 )
	call _settextposition( 2, 1 )
	call _displaycursor( _GCURSORON )
	call _outtext( 'Cursor ON'//char(10)//char(10)
     +		       //'Enter your name >'c )
	read( *, '(a30)' ) name
	call _displaycursor( _GCURSOROFF )
	call _settextposition( 6, 1 )
	call _outtext( 'Cursor OFF'//char(10)//char(10)
     +		       //'Enter your name >'c )
	read( *, '(a30)' ) name
	call _setvideomode( _DEFAULTMODE )
	end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?