~ubuntu-branches/ubuntu/trusty/lifelines/trusty

« back to all changes in this revision

Viewing changes to reports/st/test_fam_it.ll

  • Committer: Bazaar Package Importer
  • Author(s): Felipe Augusto van de Wiel (faw)
  • Date: 2007-05-23 23:49:53 UTC
  • mfrom: (3.1.3 edgy)
  • Revision ID: james.westby@ubuntu.com-20070523234953-ogno9rnbmth61i7p
Tags: 3.0.50-2etch1
* Changing docs/ll-reportmanual.xml and docs/ll-userguide.xml to fix
  documentation build problems (Closes: #418347).

* lifelines-reports
  - Adding a dependency to lifelines >= 3.0.50 to prevent file conflict.
    (Closes: #405500).

* Updating French translation. Thanks to Bernard Adrian. (Closes: #356671).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
proc main() {
 
3
    print(nl())
 
4
    forfam(f,c) {
 
5
        print(d(c),": ",key(f),nl()) 
 
6
        print("    children\n")
 
7
        children(f,i,c2) {
 
8
            print("    ",d(c2),": ",key(i),nl()) 
 
9
        }
 
10
        print("    spouses\n")
 
11
        spouses(f,s,c2) {
 
12
            print("    ",d(c2),": ",key(s),nl()) 
 
13
        }
 
14
    }
 
15
}