Fri Sep 4 11:11:19 EDT 2009 CYGWIN_NT-6.0 urbanjs-PC 1.7.0(0.212/5/3) 2009-08-20 10:56 i686 Cygwin + rm -f cmdline_tiny + gfortran -dumpversion GNU Fortran (GCC) 4.3.2 20080827 (beta) 2 Copyright (C) 2008 Free Software Foundation, Inc. GNU Fortran comes with NO WARRANTY, to the extent permitted by law. You may redistribute copies of GNU Fortran under the terms of the GNU General Public License. For more information about these matters, see the file named COPYING + gfortran cmdline_tiny.f90 -o cmdline_tiny + TESTIT + echo DEFAULT VALUES: DEFAULT VALUES: + ./cmdline_tiny ================================================================================ command line as received by program: -------------------------------------------------------------------------------- resulting namelist group values &CMD I= 1, J= 2, C=Bacon, K= 3, L= 10, 20, 30, SMITH%P_AGE= 20, SMITH%P_NAME=john smith , SMITH%P_HEIGHT= 5.9000001 , QUIT=F, S= 1, T= 2, R= 3, X=(-1.00000000 ,-1.00000000 ), / + ./cmdline_tiny I=1111 j=22222 'C='\''Eggs'\''' quit=t SMITH%P_HEIGHT=5.10 ================================================================================ command line as received by program: I=1111 j=22222 C='Eggs' quit=t SMITH%P_HEIGHT=5.10 -------------------------------------------------------------------------------- resulting namelist group values &CMD I= 1111, J= 22222, C=Eggs , K= 3, L= 10, 20, 30, SMITH%P_AGE= 20, SMITH%P_NAME=john smith , SMITH%P_HEIGHT= 5.0999999 , QUIT=T, S= 1, T= 2, R= 3, X=(-1.00000000 ,-1.00000000 ), / + ./cmdline_tiny L=1111,2222,3333 L=,,4444 'L(2)=5555' '!' array syntax tests ================================================================================ command line as received by program: L=1111,2222,3333 L=,,4444 L(2)=5555 ! array syntax tests -------------------------------------------------------------------------------- resulting namelist group values &CMD I= 1, J= 2, C=Bacon, K= 3, L= 1111, 5555, 4444, SMITH%P_AGE= 20, SMITH%P_NAME=john smith , SMITH%P_HEIGHT= 5.9000001 , QUIT=F, S= 1, T= 2, R= 3, X=(-1.00000000 ,-1.00000000 ), / + rm -f cmdline_tiny + g95 -dumpversion G95 (GCC 4.0.3 (g95 0.92!) May 7 2009) Copyright (C) 2002-2008 Free Software Foundation, Inc. G95 comes with NO WARRANTY, to the extent permitted by law. You may redistribute copies of G95 under the terms of the GNU General Public License. For more information about these matters, see the file named COPYING + g95 cmdline_tiny.f90 -o cmdline_tiny + TESTIT + echo DEFAULT VALUES: DEFAULT VALUES: + ./cmdline_tiny ================================================================================ command line as received by program: -------------------------------------------------------------------------------- resulting namelist group values &CMD I = 1, J = 2, C = 'Bacon', K = 3, L = 10, 20, 30, SMITH = 20, 'john smith ', 5.9, QUIT = F, S = 1, T = 2, R = 3, X = (-1.,-1.), / + ./cmdline_tiny I=1111 j=22222 'C='\''Eggs'\''' quit=t SMITH%P_HEIGHT=5.10 ================================================================================ command line as received by program: I=1111 j=22222 C='Eggs' quit=t SMITH%P_HEIGHT=5.10 -------------------------------------------------------------------------------- resulting namelist group values &CMD I = 1111, J = 22222, C = 'Eggs ', K = 3, L = 10, 20, 30, SMITH = 20, 'john smith ', 5.1, QUIT = T, S = 1, T = 2, R = 3, X = (-1.,-1.), / + ./cmdline_tiny L=1111,2222,3333 L=,,4444 'L(2)=5555' '!' array syntax tests ================================================================================ command line as received by program: L=1111,2222,3333 L=,,4444 L(2)=5555 ! array syntax tests -------------------------------------------------------------------------------- resulting namelist group values &CMD I = 1, J = 2, C = 'Bacon', K = 3, L = 1111, 5555, 4444, SMITH = 20, 'john smith ', 5.9, QUIT = F, S = 1, T = 2, R = 3, X = (-1.,-1.), / + rm -f cmdline_tiny.f90 cmdline_tiny