Rust desde cero(파트 1)
2494 단어 learnrustprogramming
Este documento contiene los principios mas básicos del lenguaje de programación Rust.
Tabla de contenido
임프리미르 엔 콘솔라
단일 자리 표시자
fn main() {
println!("Number: {}", 1);
}
여러 자리 표시자
fn main() {
println!("{} con {} company", "Aprendiendo", "Cuadros");
}
Argumentos 위치
fn main() {
println!("Enhance your coding skills from {0} courses. {0} courses are very {1}", "Educative", "interactive");
}
해설
라인에 대한 설명
// Writing a Rust program
fn main() {
//The line comment is the recommended comment style
println!("This is a line comment!"); // print hello World to the screen
}
블록에 대한 설명
/*...*/
fn main() {
/*
The block comment is extremely useful for temporarily disabling
a large chunk of code. /* Block comments can also be /* nested, */ */
To comment a large block just write in between /* text */
*/
println!("This is a line comment!"); // print hello World to the screen
}
Reference
이 문제에 관하여(Rust desde cero(파트 1)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/cuadroscode/rust-desde-cero-parte-1-9fe텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)