<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://mediawiki.wissen-ahrensburg.de/index.php?action=history&amp;feed=atom&amp;title=Erste_Schritte_mit_Rust%3A_%22Hello%2C_World%21%22_Programm</id>
	<title>Erste Schritte mit Rust: &quot;Hello, World!&quot; Programm - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://mediawiki.wissen-ahrensburg.de/index.php?action=history&amp;feed=atom&amp;title=Erste_Schritte_mit_Rust%3A_%22Hello%2C_World%21%22_Programm"/>
	<link rel="alternate" type="text/html" href="https://mediawiki.wissen-ahrensburg.de/index.php?title=Erste_Schritte_mit_Rust:_%22Hello,_World!%22_Programm&amp;action=history"/>
	<updated>2026-08-19T20:43:00Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in Dokument</subtitle>
	<generator>MediaWiki 1.46.0</generator>
	<entry>
		<id>https://mediawiki.wissen-ahrensburg.de/index.php?title=Erste_Schritte_mit_Rust:_%22Hello,_World!%22_Programm&amp;diff=2531&amp;oldid=prev</id>
		<title>Thorsten: // via Wikitext Extension for VSCode</title>
		<link rel="alternate" type="text/html" href="https://mediawiki.wissen-ahrensburg.de/index.php?title=Erste_Schritte_mit_Rust:_%22Hello,_World!%22_Programm&amp;diff=2531&amp;oldid=prev"/>
		<updated>2025-01-28T20:57:47Z</updated>

		<summary type="html">&lt;p&gt;// via Wikitext Extension for VSCode&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Hinweis: Diese Inhalte wurden mit Unterstützung von Künstlicher Intelligenz erstellt und redaktionell überprüft (Transparenzhinweis gemäß Art. 50 EU AI Act).&lt;br /&gt;
&lt;br /&gt;
==Erste Schritte mit Rust: &amp;quot;Hello, World!&amp;quot; Programm==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Rust installieren ==&lt;br /&gt;
Stellen Sie sicher, dass Rust auf Ihrem System installiert ist. Sie können Rust mit dem folgenden Befehl installieren:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sh&amp;quot;&amp;gt;&lt;br /&gt;
curl --proto &amp;#039;=https&amp;#039; --tlsv1.2 -sSf https://sh.rustup.rs | sh&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Neues Projekt erstellen ==&lt;br /&gt;
Erstellen Sie ein neues Rust-Projekt mit &amp;lt;code&amp;gt;cargo&amp;lt;/code&amp;gt;, dem Rust-Paketmanager:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sh&amp;quot;&amp;gt;&lt;br /&gt;
cargo new hello_world&lt;br /&gt;
cd hello_world&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Hauptdatei bearbeiten ==&lt;br /&gt;
Öffnen Sie die Datei &amp;lt;code&amp;gt;main.rs&amp;lt;/code&amp;gt; im Verzeichnis &amp;lt;code&amp;gt;src&amp;lt;/code&amp;gt; und fügen Sie den folgenden Code hinzu:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;rust&amp;quot;&amp;gt;&lt;br /&gt;
fn main() {&lt;br /&gt;
    println!(&amp;quot;Hello, World!&amp;quot;);&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Programm kompilieren und ausführen ==&lt;br /&gt;
Kompilieren und führen Sie das Programm mit &amp;lt;code&amp;gt;cargo run&amp;lt;/code&amp;gt; aus:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sh&amp;quot;&amp;gt;&lt;br /&gt;
cargo run&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hinweis: Diese Inhalte wurden mit Unterstützung von Künstlicher Intelligenz erstellt und redaktionell überprüft (Transparenzhinweis gemäß Art. 50 EU AI Act).&lt;/div&gt;</summary>
		<author><name>Thorsten</name></author>
	</entry>
</feed>