~ubuntu-branches/debian/jessie/eso-midas/jessie

« back to all changes in this revision

Viewing changes to prim/help/entry.mlq

  • Committer: Package Import Robot
  • Author(s): Ole Streicher
  • Date: 2014-04-22 14:44:58 UTC
  • Revision ID: package-import@ubuntu.com-20140422144458-okiwi1assxkkiz39
Tags: upstream-13.09pl1.2+dfsg
ImportĀ upstreamĀ versionĀ 13.09pl1.2+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
% @(#)entry.mlc 2.1 (ESO-IPG) 9/27/91 11:07:20 
 
2
%++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 
3
%.COPYRIGHT  (c)  1990 European Southern Observatory
 
4
%.IDENT      entry.mlq
 
5
%.AUTHOR     KB, IPG/ESO
 
6
%.KEYWORDS   MIDAS, help files, ENTRY command
 
7
%.PURPOSE    On-line help file for the command: ENTRY
 
8
%.VERSION    1.1  18-JAN-1993 : cleanup, KB
 
9
%----------------------------------------------------------------
 
10
\leftpage
 
11
\noqualifier
 
12
\se
 
13
SECTION./
 
14
\es\co
 
15
ENTRY                                                   18-JAN-1993  KB
 
16
\oc\su
 
17
ENTRY proc
 
18
        define begin of MIDAS procedure in a file with different name than
 
19
        the procedure
 
20
\us\pu
 
21
Purpose: 
 
22
         Define begin of MIDAS procedure in a file with different name
 
23
         than the procedure.
 
24
\up\sy
 
25
Syntax: 
 
26
         ENTRY proc
 
27
\ys\pa
 
28
         proc = name of procedure
 
29
\ap\sa
 
30
See also:
 
31
         @@ procedure
 
32
\as\no
 
33
Note:  
 
34
         This procedure is then executed via `@@ file,proc'.
 
35
\on\exs
 
36
Examples:
 
37
\ex
 
38
         ENTRY TUTTI
 
39
          in line 23 of the procedure `test.prg'
 
40
\xe\ex
 
41
         @@ test
 
42
          Will execute the commands stored in line 1 till line 22 of file
 
43
          `test.prg' only, since the ENTRY command in line 23 has the same
 
44
          effect as a RETURN command.
 
45
\xe\ex
 
46
         @@ test,tutti
 
47
          Will execute the commands stored in line 24 till last line of file
 
48
          `test.prg' (if no other RETURN or ENTRY command is encountered).
 
49
\xe\sxe