?? st_function_2.f90
字號:
! PR15620! Check that evaluating a statement function doesn't affect the value of! its dummy argument variables.program st_function_2 integer fn, a, b fn(a, b) = a + b if (foo(1) .ne. 43) call abort ! Check that values aren't modified when avaluating the arguments. a = 1 b = 5 if (fn (b + 2, a + 3) .ne. 11) call abortcontainsfunction foo (x) integer z, y, foo, x bar(z) = z*z z = 42 t = bar(x) foo = t + z end function end program
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -