Saratov Linux User Group
 help / color / mirror / Atom feed
From: Paul P Komkoff Jr <i@stingr.net>
To: Paul P Komkoff Jr <sarlug@lug.ru>
Subject: Re: [Sarlug] Re[2]: Howdy!
Date: Sun, 15 Dec 2002 19:35:41 +0300
Message-ID: <20021215163541.GO3240@stingr.net> (raw)
In-Reply-To: <18532710752.20021215184158@medforyou.ru>

Replying to corax@medforyou.ru:
> Знаешь, чУвак, возможно я тебя не понял, я рад что ты знаешь что ЭТО
> означает, но если бы я использовал эту конструкцию {{}} то только для
> объединения последовательности команд (операторов) в один блок со
> своей лексической областью видимости, а скорее всего наверняка нашел
> бы другое решение ...
> 
> Жду твоих обстоятельных обяснений использования {{}}

Когда, господи, когда придёт моё время?!
Когда среди всех суперкрутых специалистов по перлу мне перестанут
попадаться те, которые не умеют читать документацию (perldoc perlsyn 5
экранов вниз)

       See the do entry in the perlfunc manpage.  Note also that
       the loop control statements described later will NOT work
       in this construct, because modifiers don't take loop
       labels.  Sorry.  You can always put another block inside
       of it (for "next") or around it (for "last") to do that
       sort of thing.  For "next", just double the braces:

           do {{
               next if $x == $y;
               # do something here
           }} until $x++ > $z;

       For "last", you have to be more elaborate:

           LOOP: {
                   do {
                       last if $x = $y**2;
                       # do something here
                   } while $x++ <= $z;
           }


> Специально для 4800 (удалил свою [censored] сигнатуру)

Благодарю.

-- 
Paul P 'Stingray' Komkoff 'Greatest' Jr /// (icq)23200764 /// (http)stingr.net
  When you're invisible, the only one really watching you is you (my keychain)


  reply	other threads:[~2002-12-15 16:35 UTC|newest]

Thread overview: 51+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-12-14 21:58   ` Wasa W Plugin
2002-12-15  4:43     ` Amodeus
2002-12-15  7:19       ` Re[2]: " Wasa W Plugin
2002-12-15  7:04         ` Amodeus
2002-12-15  9:07       ` corax
2002-12-15  8:17         ` Amodeus
2002-12-15  9:53         ` Re[3]: " Алексей Шишкин <a.shishkin@sgu.ru>
2002-12-15 10:01           ` Re[4]: " corax
2002-12-15 10:39             ` Re[5]: " Алексей Шишкин <a.shishkin@sgu.ru>
2002-12-15 10:41               ` Paul P Komkoff Jr
2002-12-15 11:06                 ` Paul Galashin
2002-12-15 14:17                   ` Genix
2002-12-15 11:32               ` Re[6]: " corax
2002-12-15 11:48                 ` [Sarlug] îâåðêâîòèíã Paul Galashin
2002-12-15 11:50                   ` [Sarlug] Re: [Sarlug] оверквотинг corax
2002-12-15 14:16               ` [Sarlug] [JT] [****FLAME***] ;) Genix
2002-12-15 10:24         ` [Sarlug] Re[2]: Howdy! Paul P Komkoff Jr
2002-12-15 11:10           ` Re[2]: " corax
2002-12-15 11:26             ` Paul P Komkoff Jr
2002-12-15 11:49               ` Re[2]: " corax
2002-12-15 14:31                 ` Paul P Komkoff Jr
2002-12-15 15:41                   ` Re[2]: " corax
2002-12-15 16:35                     ` Paul P Komkoff Jr [this message]
2002-12-16  5:57                   ` MD
2002-12-15 12:22               ` MD
2002-12-15 12:34                 ` Re[2]: " corax
2002-12-15 13:09                   ` MD
2002-12-15 13:14                     ` dmitry0909
2002-12-15 13:25                       ` Re[2]: " corax
2002-12-15 13:11                 ` dmitry0909
2002-12-15 11:12           ` Paul Galashin
2002-12-15 10:19             ` Amodeus
2002-12-15 13:07           ` Re[2]: " dmitry0909
2002-12-15 14:34             ` Paul P Komkoff Jr
2002-12-15 15:50               ` CityHawk
2002-12-16  5:59               ` MD
2002-12-16 10:02                 ` Paul P Komkoff Jr
2002-12-16 14:09                   ` Re[2]: " dmitry0909
2002-12-16 14:14                     ` Re[3]: " Andrey N. Vasilev
2002-12-16 14:17                       ` Re[4]: " corax
2002-12-15 15:17             ` **SPAM** Re[2]: " Paul Galashin
2002-12-15 14:19           ` Genix
2002-12-15 14:36             ` Paul P Komkoff Jr
2002-12-15 14:42               ` Genix
2002-12-15 16:56           ` CityHawk
2002-12-15  6:41     ` Genix
2002-12-15  7:44       ` Re[2]: " Wasa W Plugin
2002-12-15  7:54         ` Genix
2002-12-15  7:07           ` Amodeus
2002-12-15  9:00             ` Paul P Komkoff Jr
2002-12-15  8:16               ` Amodeus

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20021215163541.GO3240@stingr.net \
    --to=i@stingr.net \
    --cc=sarlug@lug.ru \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

Saratov Linux User Group

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/sarlug/0 sarlug/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 sarlug sarlug/ http://lore.altlinux.org/sarlug \
		sarlug@lists.lug.ru sarlug@lug.ru
	public-inbox-index sarlug

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.sarlug


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git