visual studio 2012 - Is it possible to run extra lines of code during debugging -


i want execute lines of code during debugging in visual studio 2012. possible make it. 1 application execute write(,) statements, or evaluate expressions.

if you're using f77 intel compiler, have @ /d-lines option. can write code like

      if (x.gt.10)           x = 0 d         print *, 'x reset'       end if 

it compile lines d in column 1 if /d-lines option present, otherwise treated comment. i've ever used on f77. don't know if works on f90 etc.

reference http://software.intel.com/sites/products/documentation/doclib/stdxe/2013/composerxe/compiler/fortran-lin/guid-e356b0e3-f847-40a9-a932-77b4d8eef53b.htm

the intel compiler supports preprocessing. use either

if you're using silverfrost, have @ cif-celse-cendif /vparam /sparam options.


Comments

Popular posts from this blog

android - Get AccessToken using signpost OAuth without opening a browser (Two legged Oauth) -

org.mockito.exceptions.misusing.InvalidUseOfMatchersException: mockito -

google shop client API returns 400 bad request error while adding an item -