Rust toolchains: Difference between revisions

From wikinotes
(Created page with "{| |- | rust cargo |}")
 
No edit summary
Line 2: Line 2:
|-
|-
| [[rust cargo]]
| [[rust cargo]]
|-
|}
|}
= rustc =
<blockquote>
<code>rustc</code> is the rust compiler.
<syntaxhighlight lang="bash">
rustc foo.rs  # compiles 'foo' executable from foo.rs
</syntaxhighlight>
</blockquote><!-- rustc -->

Revision as of 01:46, 1 September 2021

rust cargo

rustc

rustc is the rust compiler.

rustc foo.rs  # compiles 'foo' executable from foo.rs