⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 entry_9.f90

📁 linux下编程用 编译软件
💻 F90
字号:
! Test alternate entry points for functions when the result types! of all entry points match	function f1 (a)	integer a, f1, e1	f1 = 15 + a	return	entry e1	e1 = 42	end function	function f2 ()	real f2, e2	entry e2	e2 = 45	end function	program entrytest	integer f1, e1	real f2, e2	if (f1 (6) .ne. 21) call abort ()	if (e1 () .ne. 42) call abort ()	if (f2 () .ne. 45) call abort ()	if (e2 () .ne. 45) call abort ()	end

⌨️ 快捷键说明

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