~ubuntu-branches/ubuntu/wily/afnix/wily

« back to all changes in this revision

Viewing changes to exp/ref/1001.als

  • Committer: Bazaar Package Importer
  • Author(s): Anibal Monsalve Salazar
  • Date: 2011-03-16 21:31:18 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110316213118-gk4k3ez3e5d2huna
Tags: 2.0.0-1
* QA upload.
* New upstream release
* Debian source format is 3.0 (quilt)
* Fix debhelper-but-no-misc-depends
* Fix ancient-standards-version
* Fix package-contains-linda-override
* debhelper compatibility is 7
* Fix dh-clean-k-is-deprecated

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# ---------------------------------------------------------------------------
2
 
# - 1001.als                                                                -
3
 
# - afnix example : chapter 10 : example 01                                 -
4
 
# ---------------------------------------------------------------------------
5
 
# - This program is free software;  you can redistribute it  and/or  modify -
6
 
# - it provided that this copyright notice is kept intact.                  -
7
 
# -                                                                         -
8
 
# - This program  is  distributed in  the hope  that it will be useful, but -
9
 
# - without  any  warranty;  without  even   the   implied    warranty   of -
10
 
# - merchantability or fitness for a particular purpose.  In no event shall -
11
 
# - the copyright holder be liable for any  direct, indirect, incidental or -
12
 
# - special damages arising in any way out of the use of this software.     -
13
 
# ---------------------------------------------------------------------------
14
 
# - copyright (c) 1999-2007 amaury darsch                                   -
15
 
# ---------------------------------------------------------------------------
16
 
 
17
 
# create a new print table with 3 columns
18
 
const tbl (PrintTable 3)
19
 
 
20
 
# add the rows
21
 
tbl:add "Planet"  "Diameter" "Rotation time"
22
 
tbl:add "Mercury"   4840     "1407:36"
23
 
tbl:add "Venus"    12400     "5819:51"
24
 
tbl:add "Earth"    12756     "23:56"
25
 
tbl:add "Mars"      6800     "24:37"
26
 
tbl:add "Jupiter" 142800     "9:50"
27
 
tbl:add "Saturn"  120800     "10:14"
28
 
tbl:add "Uranus"   47600     "10:49"
29
 
tbl:add "Neptune"  44600     "15:40"
30
 
tbl:add "Pluto"     5850     "153:17"
31
 
tbl:add "Sedna"     1180     "10:00"
32
 
 
33
 
# set the table format
34
 
tbl:set-column-size 0 10
35
 
tbl:set-column-size 1 10
36
 
tbl:set-column-direction 2 true
37
 
 
38
 
# print the table
39
 
tbl:format