<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/qq274sw9k/">
    <title>qq274sw9k @ ウィキ</title>
    <link>http://w.atwiki.jp/qq274sw9k/</link>
    <atom:link href="https://w.atwiki.jp/qq274sw9k/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>qq274sw9k @ ウィキ</description>

    <dc:language>ja</dc:language>
    <dc:date>2010-05-10T15:35:35+09:00</dc:date>
    <utime>1273473335</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/qq274sw9k/pages/18.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/qq274sw9k/pages/17.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/qq274sw9k/pages/16.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/qq274sw9k/pages/15.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/qq274sw9k/pages/14.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/qq274sw9k/pages/13.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/qq274sw9k/pages/12.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/qq274sw9k/pages/11.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/qq274sw9k/pages/10.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/qq274sw9k/pages/9.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/qq274sw9k/pages/18.html">
    <title>機械学習2</title>
    <link>https://w.atwiki.jp/qq274sw9k/pages/18.html</link>
    <description>
          </description>
    <dc:date>2010-05-10T15:35:35+09:00</dc:date>
    <utime>1273473335</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/qq274sw9k/pages/17.html">
    <title>Linux コマンド</title>
    <link>https://w.atwiki.jp/qq274sw9k/pages/17.html</link>
    <description>
          </description>
    <dc:date>2010-02-16T09:51:03+09:00</dc:date>
    <utime>1266281463</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/qq274sw9k/pages/16.html">
    <title>機械学習</title>
    <link>https://w.atwiki.jp/qq274sw9k/pages/16.html</link>
    <description>
          </description>
    <dc:date>2010-05-10T15:34:43+09:00</dc:date>
    <utime>1273473283</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/qq274sw9k/pages/15.html">
    <title>Perl 勉強用2</title>
    <link>https://w.atwiki.jp/qq274sw9k/pages/15.html</link>
    <description>
          </description>
    <dc:date>2009-09-09T12:55:49+09:00</dc:date>
    <utime>1252468549</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/qq274sw9k/pages/14.html">
    <title>Perl サンプルプログラム</title>
    <link>https://w.atwiki.jp/qq274sw9k/pages/14.html</link>
    <description>
      *引数指定

コマンドプロンプトから、次のように入力してリターンキーを押してください。-eオプションは次に続く&#039;...&#039;をperlスクリプトとして実行することを意味します。

 perl -e &quot;print &#039;Hello world!!&#039;;&quot;

*ファイル指定

次のような内容のテキストファイル(仮にhello.plとします)を作成してください。

 print &quot;Hello world!!\n&quot;;

*上記で作成したファイルの名前を引数にして、コマンドプロンプトから次のようにperlコマンドを実行してください。

 perl hello.pl

*コマンドプロンプトから次のように入力して実行してください。

 hello.pl

 echo  print &quot;Hello World!!\n&quot;;  | perl      # Windowsの場合


 $xx = 5;
 $yy = 2;
 $zz = $xx + $yy;
 print &quot;答は $zz です。\n&quot;; 

 $xx = 7;
 print &quot;答は$xxです\n&quot;;     # 「答は7です」と表示されます
 print &#039;答は$xxです\n&#039;;     # 「答は$xxです\n」と表示されます

 $xx = 5;          # スカラー変数$xxに数値5を代入します。
 $xx = &quot;abc&quot;;      # スカラー変数$xxに文字列abcを代入します。
 print &quot;$xx\n&quot;;    # スカラー変数$xxの値を参照して表示します。

 $xx[0] = 5;        # 0番目の要素に数値5を代入します。
 $xx[1] = &quot;abc&quot;;    # 1番目の要素に文字列abcを代入します。
 print &quot;$xx[1]\n&quot;;  # 1番目の要素の内容abcを表示します。

 @xx = ( &quot;aa&quot;, &quot;bb&quot; );       # 配列xxにaa,bbを代入します。
 $xx[2] = &#039;cc&#039;;              # 2番目の要素にccを代入します。
 @xx[3..4] = ( &quot;dd&quot;, &quot;ee&quot; ); # 3～4番目の要素にdd,eeを代入します。
 print @x    </description>
    <dc:date>2009-09-09T11:53:48+09:00</dc:date>
    <utime>1252464828</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/qq274sw9k/pages/13.html">
    <title>Perl勉強用</title>
    <link>https://w.atwiki.jp/qq274sw9k/pages/13.html</link>
    <description>
          </description>
    <dc:date>2009-09-09T12:27:20+09:00</dc:date>
    <utime>1252466840</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/qq274sw9k/pages/12.html">
    <title>プラグイン/人気商品一覧</title>
    <link>https://w.atwiki.jp/qq274sw9k/pages/12.html</link>
    <description>
      * 人気商品一覧
@wikiのwikiモードでは
 #price_list(カテゴリ名)
と入力することで、あるカテゴリの売れ筋商品のリストを表示することができます。

カテゴリには以下のキーワードがご利用できます。
|キーワード|表示される内容|
|ps3|PlayStation3|
|ps2|PlayStation3|
|psp|PSP|
|wii|Wii|
|xbox|XBOX|
|nds|Nintendo DS|
|desctop-pc|デスクトップパソコン|
|note-pc|ノートパソコン|
|mp3player|デジタルオーディオプレイヤー|
|kaden|家電|
|aircon|エアコン|
|camera|カメラ|
|game-toy|ゲーム・おもちゃ全般|
|all|指定無し|

空白の場合はランダムな商品が表示されます。

※このプラグインは[[価格比較サイト@PRICE&gt;&gt;http://atprice.jp]]のデータを利用しています。

-----

たとえば、
 #price_list(game-toy)
と入力すると以下のように表示されます。

ゲーム・おもちゃ全般の売れ筋商品
#price_list(game-toy)

ノートパソコンの売れ筋商品
#price_list(game-toy)

人気商品リスト
#price_list()
    </description>
    <dc:date>2009-09-08T22:54:27+09:00</dc:date>
    <utime>1252418067</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/qq274sw9k/pages/11.html">
    <title>プラグイン/コメント</title>
    <link>https://w.atwiki.jp/qq274sw9k/pages/11.html</link>
    <description>
      * コメントプラグイン
@wikiのwikiモードでは
 #comment()
と入力することでコメントフォームを簡単に作成することができます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_60_ja.html


-----
たとえば、#comment() と入力すると以下のように表示されます。

#comment    </description>
    <dc:date>2009-09-08T22:54:27+09:00</dc:date>
    <utime>1252418067</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/qq274sw9k/pages/10.html">
    <title>プラグイン/関連ブログ</title>
    <link>https://w.atwiki.jp/qq274sw9k/pages/10.html</link>
    <description>
      * 関連ブログ
@wikiのwikiモードでは
 #bf(興味のある単語)
と入力することで、あるキーワードに関連するブログ一覧を表示することができます

詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_161_ja.html

-----


たとえば、#bf(ゲーム)と入力すると以下のように表示されます。


#bf(ゲーム)
    </description>
    <dc:date>2009-09-08T22:54:27+09:00</dc:date>
    <utime>1252418067</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/qq274sw9k/pages/9.html">
    <title>プラグイン</title>
    <link>https://w.atwiki.jp/qq274sw9k/pages/9.html</link>
    <description>
      @wikiにはいくつかの便利なプラグインがあります。

-----


#ls

-----

これ以外のプラグインについては@wikiガイドをご覧ください
=&gt;http://atwiki.jp/guide/
    </description>
    <dc:date>2009-09-08T22:54:27+09:00</dc:date>
    <utime>1252418067</utime>
  </item>
  </rdf:RDF>
