<!DOCTYPE HTML> <html lang="" > <head> <meta charset="UTF-8"> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <title>hello world ยท hello world! bluesky</title> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="description" content=""> <meta name="generator" content="@gitbook-ng/gitbook 3.3.6"> <meta name="author" content="syui"> <link rel="stylesheet" href="../gitbook/style.css"> <link rel="stylesheet" href="../gitbook/gitbook-plugin-codeblock-filename/block.css"> <link rel="stylesheet" href="../gitbook/gitbook-plugin-mermaid-gb3/mermaid/mermaid.css"> <link rel="stylesheet" href="../gitbook/gitbook-plugin-highlight/website.css"> <link rel="stylesheet" href="../gitbook/gitbook-plugin-search/search.css"> <link rel="stylesheet" href="../gitbook/gitbook-plugin-fontsettings/website.css"> <meta name="HandheldFriendly" content="true"/> <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <link rel="apple-touch-icon-precomposed" sizes="152x152" href="../gitbook/images/apple-touch-icon-precomposed-152.png"> <link rel="shortcut icon" href="../gitbook/images/favicon.ico" type="image/x-icon"> <link rel="next" href="2.html" /> <link rel="prev" href="./" /> </head> <body> <div class="book"> <div class="book-summary"> <div id="book-search-input" role="search"> <input type="text" placeholder="Type to search" /> </div> <nav role="navigation"> <ul class="summary"> <li class="chapter " data-level="1.1" data-path="../"> <a href="../"> hello world! bluesky </a> </li> <li class="chapter " data-level="1.2" data-path="../card/"> <a href="../card/"> card </a> </li> <li class="chapter " data-level="1.3" data-path="../c1/"> <a href="../c1/"> part 1 </a> <ul class="articles"> <li class="chapter " data-level="1.3.1" data-path="../c1/1.html"> <a href="../c1/1.html"> quick start </a> </li> <li class="chapter " data-level="1.3.2" data-path="../c1/2.html"> <a href="../c1/2.html"> example </a> </li> </ul> </li> <li class="chapter " data-level="1.4" data-path="../c2/"> <a href="../c2/"> part 2 </a> <ul class="articles"> <li class="chapter " data-level="1.4.1" data-path="../c2/1.html"> <a href="../c2/1.html"> bluesky </a> </li> <li class="chapter " data-level="1.4.2" data-path="../c2/2.html"> <a href="../c2/2.html"> terminal </a> </li> <li class="chapter " data-level="1.4.3" data-path="../c2/3.html"> <a href="../c2/3.html"> shell </a> </li> <li class="chapter " data-level="1.4.4" data-path="../c2/4.html"> <a href="../c2/4.html"> rust </a> </li> </ul> </li> <li class="chapter " data-level="1.5" data-path="./"> <a href="./"> part 3 </a> <ul class="articles"> <li class="chapter active" data-level="1.5.1" data-path="1.html"> <a href="1.html"> hello world </a> </li> <li class="chapter " data-level="1.5.2" data-path="2.html"> <a href="2.html"> seahorse </a> </li> <li class="chapter " data-level="1.5.3" data-path="3.html"> <a href="3.html"> reqwest </a> </li> </ul> </li> <li class="chapter " data-level="1.6" data-path="../c4/"> <a href="../c4/"> part 4 </a> <ul class="articles"> <li class="chapter " data-level="1.6.1" data-path="../c4/0.html"> <a href="../c4/0.html"> ai </a> </li> <li class="chapter " data-level="1.6.2" data-path="../c4/1.html"> <a href="../c4/1.html"> config </a> </li> <li class="chapter " data-level="1.6.3" data-path="../c4/2.html"> <a href="../c4/2.html"> mention </a> </li> <li class="chapter " data-level="1.6.4" data-path="../c4/3.html"> <a href="../c4/3.html"> base64 </a> </li> </ul> </li> <li class="chapter " data-level="1.7" data-path="../c5/"> <a href="../c5/"> part 5 </a> <ul class="articles"> <li class="chapter " data-level="1.7.1" data-path="../c5/1.html"> <a href="../c5/1.html"> notify </a> </li> <li class="chapter " data-level="1.7.2" data-path="../c5/2.html"> <a href="../c5/2.html"> timeline </a> </li> <li class="chapter " data-level="1.7.3" data-path="../c5/3.html"> <a href="../c5/3.html"> refresh </a> </li> </ul> </li> <li class="chapter " data-level="1.8" data-path="../end/"> <a href="../end/"> end </a> </li> </ul> </nav> </div> <div class="book-body"> <div class="body-inner"> <div class="book-header" role="navigation"> <!-- Title --> <h1> <i class="fa fa-circle-o-notch fa-spin"></i> <a href=".." >hello world</a> </h1> </div> <div class="page-wrapper" tabindex="-1" role="main"> <div class="page-inner"> <div id="book-search-results"> <div class="search-noresults"> <section class="normal markdown-section"> <h3 id="init">init</h3> <p>まず、rustでプログラムの雛形を作ります。</p> <pre><code class="lang-sh">mkdir -p ~/rust <span class="hljs-built_in">cd</span> ~/rust cargo init </code></pre> <pre><code class="lang-sh">. ├── Cargo.toml └── src └── main.rs </code></pre> <p>これらのファイルは自分で作成してもいいし、<code>init</code>で作成してもいいです。</p> <div><p class="code-filename">Cargo.toml</p></div> <pre><code class="lang-toml"><span class="hljs-section">[package]</span> <span class="hljs-attr">name</span> = <span class="hljs-string">"rust"</span> <span class="hljs-attr">version</span> = <span class="hljs-string">"0.1.0"</span> <span class="hljs-attr">edition</span> = <span class="hljs-string">"2021"</span> <span class="hljs-comment"># See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html</span> <span class="hljs-section"> [dependencies]</span> </code></pre> <div><p class="code-filename">src/main.rs</p></div> <pre><code class="lang-rust"><span class="hljs-function"><span class="hljs-keyword">fn</span> <span class="hljs-title">main</span></span>() { <span class="hljs-built_in">println!</span>(<span class="hljs-string">"Hello, world!"</span>); } </code></pre> <p>ちなみに、コンピュータ上ではディレクトリもファイルなのです。この話は面倒なので省略します。</p> <h4 id="editor">editor</h4> <p>次にプログラムの中身を確認してみます。</p> <p>確認するには、editor(エディタ)を使用します。私は<code>vim</code>を使いますが、<a href="https://visualstudio.microsoft.com" target="_blank">visual studio</a>がオススメかな。</p> <pre><code class="lang-sh">brew install vim vim src/main.rs </code></pre> <div><p class="code-filename">src/main.rs</p></div> <pre><code class="lang-rust"><span class="hljs-function"><span class="hljs-keyword">fn</span> <span class="hljs-title">main</span></span>() { <span class="hljs-built_in">println!</span>(<span class="hljs-string">"Hello, world!"</span>); } </code></pre> <p>これは<code>hello world!</code>という文字列を出力するプログラムです。</p> <h4 id="build">build</h4> <p>このsrcを<code>build</code>して<code>binary</code>、つまり、アプリ本体に変換することで、そのパソコンで実行できるようになります。</p> <pre><code class="lang-sh">cargo build </code></pre> <div><p class="code-filename">target/debug/rust</p></div> <pre><code class="lang-sh">target └── debug ├── rust ← このファイルがbinary └── rust.d </code></pre> <p>rustはワンバイナリと言って、コンパイル結果が単一ファイルなので、非常に良い言語です。</p> <pre><code class="lang-sh">$ ./target/debug/rust Hello, world! </code></pre> </section> </div> <div class="search-results"> <div class="has-results"> <h1 class="search-results-title"><span class='search-results-count'></span> results matching "<span class='search-query'></span>"</h1> <ul class="search-results-list"></ul> </div> <div class="no-results"> <h1 class="search-results-title">No results matching "<span class='search-query'></span>"</h1> </div> </div> </div> </div> </div> </div> <a href="./" class="navigation navigation-prev " aria-label="Previous page: part 3"> <i class="fa fa-angle-left"></i> </a> <a href="2.html" class="navigation navigation-next " aria-label="Next page: seahorse"> <i class="fa fa-angle-right"></i> </a> </div> <script> var gitbook = gitbook || []; gitbook.push(function() { gitbook.page.hasChanged({"page":{"title":"hello world","level":"1.5.1","depth":2,"next":{"title":"seahorse","level":"1.5.2","depth":2,"path":"c3/2.md","ref":"c3/2.md","articles":[]},"previous":{"title":"part 3","level":"1.5","depth":1,"path":"c3/README.md","ref":"c3/README.md","articles":[{"title":"hello world","level":"1.5.1","depth":2,"path":"c3/1.md","ref":"c3/1.md","articles":[]},{"title":"seahorse","level":"1.5.2","depth":2,"path":"c3/2.md","ref":"c3/2.md","articles":[]},{"title":"reqwest","level":"1.5.3","depth":2,"path":"c3/3.md","ref":"c3/3.md","articles":[]}]},"dir":"ltr"},"config":{"plugins":["-sharing","codeblock-filename","mermaid-gb3","diff"],"root":"./","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"codeblock-filename":{},"mermaid-gb3":{},"diff":{"type":"markdown","method":"diffChars","options":{}},"highlight":{},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"theme":"default","author":"syui","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"hello world! bluesky","gitbook":"*","description":"This is a bluesky ai-card example, and first rust"},"file":{"path":"c3/1.md","mtime":"2023-07-24T10:43:41.702Z","type":"markdown"},"gitbook":{"version":"3.3.6","time":"2023-09-16T08:55:27.618Z"},"basePath":"..","book":{"language":""}}); }); </script> </div> <script src="../gitbook/gitbook.js"></script> <script src="../gitbook/theme.js"></script> <script src="../gitbook/gitbook-plugin-mermaid-gb3/book/plugin.js"></script> <script src="../gitbook/gitbook-plugin-search/search-engine.js"></script> <script src="../gitbook/gitbook-plugin-search/search.js"></script> <script src="../gitbook/gitbook-plugin-lunr/lunr.min.js"></script> <script src="../gitbook/gitbook-plugin-lunr/search-lunr.js"></script> <script src="../gitbook/gitbook-plugin-fontsettings/fontsettings.js"></script> <script src="../gitbook/gitbook-plugin-mermaid-gb3/mermaid/mermaid.min.js"></script> </body> </html>