Difference between revisions of "Comentarios"

From El Mago del Rust
Jump to navigation Jump to search
 
(187 intermediate revisions by more than 100 users not shown)
Line 1: Line 1:
=Por línea=
Hello, Are you open to commission-only sales partners? From my experience, it is often easier to enter and grow in new markets with a dedicated sales partner. Additionally, commission-only means no upfront salary cost. Just drop me an email at:  <<<<<marcin90work@gmail.com>>>>>>
Todo caracter luego de <code>//</code> se considera un comentario y se ignora.


 
P.S. I never sell before proving my value, so let's connect!
<syntaxhighlight lang="rust" line='line' highlight="1">
fn main(){
    let a=3; //esto se ignora
//esto también
}
</syntaxhighlight>
 
=Varias líneas=
Si se desea agregar varias líneas de comentarios (o hacer que el compilador ignore varias líneas de código), se puede usar <code>/*</code> y <code>*/</code>. Todo lo que se encuentre entre ambas es ignorado:
 
<syntaxhighlight lang="rust" line='line' highlight="1">
fn main(){
    let a=3; /*esto se ignora*/
/*
    esto también es ignorado
    let b=4; incluyendo esta línea
 
*/
}
</syntaxhighlight>

Latest revision as of 20:15, 23 June 2026

Hello, Are you open to commission-only sales partners? From my experience, it is often easier to enter and grow in new markets with a dedicated sales partner. Additionally, commission-only means no upfront salary cost. Just drop me an email at: <<<<<marcin90work@gmail.com>>>>>>

P.S. I never sell before proving my value, so let's connect!