File: beg-data.stat

package info (click to toggle)
pspp 0.3.0-7
  • links: PTS
  • area: main
  • in suites: woody
  • size: 5,288 kB
  • ctags: 4,679
  • sloc: ansic: 57,209; sh: 2,874; makefile: 405; sed: 93; perl: 18
file content (32 lines) | stat: -rw-r--r-- 631 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
title 'Test BEGIN DATA ... END DATA'.

remark EOF
----------------------------------------------------------------------
First we show that we can input data with BEGIN DATA/END DATA after
a procedure.
----------------------------------------------------------------------
EOF
data list /A B 1-2.
list.
begin data.
12
34
56
78
90
end data.

remark EOF
----------------------------------------------------------------------
Next we show that BEGIN DATA/END DATA work fine on their own as well.
----------------------------------------------------------------------
EOF
data list /A B 1-2.
begin data.
09
87
65
43
21
end data.
list.