SVN-fs-dump-format-version: 3
UUID: cb858ce8-0f05-0410-9e64-efa98b760b62
Revision-number: 1
Prop-content-length: 112
Content-length: 112
K 7
svn:log
V 14
Initial import
K 10
svn:author
V 3
fcm
K 8
svn:date
V 27
2005-11-08T16:03:11.054362Z
PROPS-END
Node-path: tutorial
Node-kind: dir
Node-action: add
Prop-content-length: 10
Content-length: 10
PROPS-END
Node-path: tutorial/trunk
Node-kind: dir
Node-action: add
Prop-content-length: 10
Content-length: 10
PROPS-END
Node-path: tutorial/trunk/cfg
Node-kind: dir
Node-action: add
Prop-content-length: 10
Content-length: 10
PROPS-END
Node-path: tutorial/trunk/cfg/ext.cfg
Node-kind: file
Node-action: add
Prop-content-length: 10
Text-content-length: 491
Text-content-md5: ee678001bbc0789983e79d365eff2c9d
Content-length: 501
PROPS-END
CFG::TYPE ext
CFG::VERSION 1.0
DEST::ROOTDIR $PWD
REPOS::tutorial::trunk fcm:tutorial_tr/src
EXPSRC::tutorial::trunk
BLD::TOOL::FC ifc
BLD::TOOL::FFLAGS -O3
BLD::TOOL::CC gcc
BLD::TOOL::CFLAGS -O3
BLD::TOOL::FFLAGS::tutorial::subroutine -O3 -i8
BLD::TOOL::LD ifc
Node-path: tutorial/trunk/doc
Node-kind: dir
Node-action: add
Prop-content-length: 10
Content-length: 10
PROPS-END
Node-path: tutorial/trunk/doc/hello.html
Node-kind: file
Node-action: add
Prop-content-length: 10
Text-content-length: 691
Text-content-md5: 1cc3c9a6d7734c3667776d7a5f81162d
Content-length: 701
PROPS-END
Hello
Hello from the FCM team!
© Crown copyright Met Office. All rights reserved.
Node-path: tutorial/trunk/src
Node-kind: dir
Node-action: add
Prop-content-length: 10
Content-length: 10
PROPS-END
Node-path: tutorial/trunk/src/subroutine
Node-kind: dir
Node-action: add
Prop-content-length: 10
Content-length: 10
PROPS-END
Node-path: tutorial/trunk/src/subroutine/hello_c.c
Node-kind: file
Node-action: add
Prop-content-length: 10
Text-content-length: 85
Text-content-md5: a4e47e0c187a4e16d107175808ad1699
Content-length: 95
PROPS-END
#include
void hello_c_ () {
printf ("%s\n", "Hello_C: Hello World!");
}
Node-path: tutorial/trunk/src/subroutine/hello_sub.f90
Node-kind: file
Node-action: add
Prop-content-length: 10
Text-content-length: 341
Text-content-md5: 5e7b7a11e3f94b1885356379d903fd1d
Content-length: 351
PROPS-END
SUBROUTINE Hello_Sub
USE Hello_Constants, ONLY: hello_string
IMPLICIT NONE
CHARACTER (LEN=*), PARAMETER :: this = 'Hello_Sub'
INTEGER :: i
! DEPENDS ON: hello_c.o
EXTERNAL Hello_C
WRITE (*, '(A)') this // ': ' // TRIM (hello_string)
WRITE (*, '(A,I0)') this // ': maximum integer: ', HUGE (i)
CALL Hello_C ()
END SUBROUTINE Hello_Sub
Node-path: tutorial/trunk/src/module
Node-kind: dir
Node-action: add
Prop-content-length: 10
Content-length: 10
PROPS-END
Node-path: tutorial/trunk/src/module/hello_constants.f90
Node-kind: file
Node-action: add
Prop-content-length: 10
Text-content-length: 115
Text-content-md5: c57ebb7151db2032b82eae2f6712bca7
Content-length: 125
PROPS-END
MODULE Hello_Constants
CHARACTER (LEN=80), PARAMETER :: hello_string = 'Hello World!'
END MODULE Hello_Constants
Node-path: tutorial/trunk/src/program
Node-kind: dir
Node-action: add
Prop-content-length: 10
Content-length: 10
PROPS-END
Node-path: tutorial/trunk/src/program/hello.f90
Node-kind: file
Node-action: add
Prop-content-length: 10
Text-content-length: 240
Text-content-md5: bfc42450c107f935b77d50422b85a6e7
Content-length: 250
PROPS-END
PROGRAM Hello
USE Hello_Constants, ONLY: hello_string
IMPLICIT NONE
INCLUDE 'hello_sub.interface'
CHARACTER (LEN=*), PARAMETER :: this = 'Hello'
WRITE (*, '(A)') this // ': ' // TRIM (hello_string)
CALL Hello_Sub ()
END PROGRAM Hello
Node-path: tutorial/branches
Node-kind: dir
Node-action: add
Prop-content-length: 10
Content-length: 10
PROPS-END
Node-path: tutorial/tags
Node-kind: dir
Node-action: add
Prop-content-length: 10
Content-length: 10
PROPS-END
Revision-number: 2
Prop-content-length: 232
Content-length: 232
K 7
svn:log
V 157
Change greeting messages from ''Hello World'' to ''Hello Earth'' in C code and Fortran module. Add copyright header to Fortran module. This change fixes #1.
K 8
svn:date
V 27
2005-11-08T16:35:08.365632Z
PROPS-END
Node-path: tutorial/trunk/src/module/hello_constants.f90
Node-kind: file
Node-action: change
Text-delta: true
Text-content-length: 106
Text-content-md5: 2396c2f40dde69b32a036dee9c9e9645
Content-length: 106
SVN s*[ O ! (C) Crown copyright Met Office. All rights reserved.
Earth!'
END MODULE Hello_Constants
Node-path: tutorial/trunk/src/subroutine/hello_c.c
Node-kind: file
Node-action: change
Text-delta: true
Text-content-length: 25
Text-content-md5: 8c87c7a561710945bd407e9687fdedb3
Content-length: 25
SVN UU I Earth!");
}