octave-patch-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-patch-tracker] [patch #7915] "help endwhile" shows "See `while'


From: Andreas Weber
Subject: [Octave-patch-tracker] [patch #7915] "help endwhile" shows "See `while' for an example" but there was no example
Date: Sun, 06 Jan 2013 16:31:47 +0000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.11) Gecko/20100101 Firefox/10.0.11 Iceweasel/10.0.11

URL:
  <http://savannah.gnu.org/patch/?7915>

                 Summary: "help endwhile" shows "See `while' for an example"
but there was no example
                 Project: GNU Octave
            Submitted by: andy1978
            Submitted on: So 06 Jan 2013 16:31:46 GMT
                Category: None
                Priority: 5 - Normal
                  Status: None
                 Privacy: Public
             Assigned to: None
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any

    _______________________________________________________

Details:

extended help text


 -- Keyword:  while
     Begin a while loop.

          i = 0;
          while (i < 10)
            i++
          endwhile

     *See also:* do.



 -- Keyword:  do
     Begin a do-until loop.  This differs from a do-while loop in that
     the body of the loop is executed at least once.

          i = 0;
          do
            i++
          until (i == 10)

     *See also:* while.







    _______________________________________________________

File Attachments:


-------------------------------------------------------
Date: So 06 Jan 2013 16:31:46 GMT  Name: while_do_example.diff  Size: 1kB  
By: andy1978

<http://savannah.gnu.org/patch/download.php?file_id=27208>

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/patch/?7915>

_______________________________________________
  Nachricht gesendet von/durch Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]