All public logs
Jump to navigation
Jump to search
Combined display of all available logs of El Mago del Rust. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 23:36, 8 March 2021 Lochi talk contribs created page Ownership - Pertenencia (Created page with "El Ownership o pertenencia es un concepto central en Rust y facilita el manejo de memoria, a diferencia de otros lenguajes que requieren un manejo más consciente de la memori...")
- 23:20, 14 February 2021 Lochi talk contribs created page Control de flujo de ejecución (Created page with "Las dos estructuras más importantes para el control del flujo de ejecución son los lazos y la expresión <code>if</code>: =Expresiones <code>if</code>= Muy similar a otros...")
- 23:27, 11 February 2021 Lochi talk contribs created page Category:Advertencias (Created page with "=Advertencias Comunes=")
- 22:47, 25 January 2021 Lochi talk contribs created page Tipos de datos (Created page with "Todo valor en Rust es de un tipo específico. Rust necesita saber ese tipo al momento de compilar el programa, y muchas veces puede inferir el tipo. En otras ocasiones debemos...")
- 00:45, 25 January 2021 Lochi talk contribs created page Errores de ejecución (Created page with "Category:Errores")
- 00:42, 25 January 2021 Lochi talk contribs created page Category:Errores (Created page with "Hay varios tipos de errores: #Errores que aparecen cuando se compilan, sea con <code>rustc</code> o con <code>cargo build</code>, que son errores de compilación. #Errores que...")
- 00:36, 25 January 2021 Lochi talk contribs created page Variables (Created page with "=let= Para definir una variable usamos <code>let</code>. Por ejemplo, si quisiéramos definir una variable llamada alfa y definirle un valor de 3, haríamos: <syntaxhighlight...")
- 23:59, 24 January 2021 Lochi talk contribs created page Errores de compilación (Created page with "Category:Errores")
- 23:13, 24 January 2021 Lochi talk contribs created page Snake case (Created page with "La convención snake case indica que: #Todas las letras están en minúscula. #Las palabras están separadas por una línea subrayada. Ejemplos: <syntaxhighlight lang="rust"...")
- 23:09, 24 January 2021 Lochi talk contribs created page Funciones (Created page with " =main= Main es la función principal de un programa de Rust: es su punto de inicio o entrada. Rust utiliza la convención snake case para nombrar identificadores de fun...")
- 22:36, 24 January 2021 Lochi talk contribs created page Category:Directorios (Created page with "Estos directorios son creados por <code>cargo</code>.")
- 22:35, 24 January 2021 Lochi talk contribs created page Category:Carpetas (Created page with "Estos directorios son creados por <code>cargo</code>.")
- 22:34, 24 January 2021 Lochi talk contribs created page Release (Created page with "Category:Carpetas Al hacer <code>cargo build --release</code>, se crearán los siguientes archivos: <syntaxhighlight lang="rust" line='line' highlight="1"> .cargo-lock .fi...")
- 22:32, 24 January 2021 Lochi talk contribs created page Debug (Created page with "Category:Carpetas Al hacer <code>cargo build</code>, se crearán los siguientes archivos dentro del target: <syntaxhighlight lang="rust" line='line' highlight="1"> .cargo-...")
- 22:23, 24 January 2021 Lochi talk contribs created page CACHEDIR.TAG (Created page with "Category:Archivos Este archivo es un archivo ordinario, que contiene al inicio esta información: <syntaxhighlight lang="rust" line='line' highlight="1"> Signature: 8a477...")
- 23:53, 23 January 2021 Lochi talk contribs created page Category:Archivos (Created page with "Estos son archivos importantes en la construcción de un programa en Rust.")
- 23:38, 23 January 2021 Lochi talk contribs created page Cargo.lock (Created page with "<syntaxhighlight lang="rust" line='line' highlight="1"> # This file is automatically @generated by Cargo. # It is not intended for manual editing. package name = "hola_car...")
- 21:39, 23 January 2021 Lochi talk contribs created page Cargo.toml (Created page with "Este archivo contiene información sobre la configuración de tu programa. Está en un formato llamado TOML (Tom's Obvious, Minimal Language). =Estructura básica del Car...")
- 21:25, 23 January 2021 Lochi talk contribs created page Cargo (Created page with "= ¿Qué es Cargo? = Es el manejador de paquetes y constructor del sistema de Rust. Descarga las librerías que requiere tu programa (dependencias), las compila y arma tu cód...")
- 16:03, 22 January 2021 Lochi talk contribs created page Template:Code (Created page with "{{Documentation subpage}} <!-- Add categories where indicated at the bottom of this page and interwikis at Wikidata --> {{#ifeq: {{PAGENAME}}|{{ROOTPAGENAME}}|{{High-risk|24,0...")
- 00:02, 21 January 2021 Lochi talk contribs created page Mi primer programa: Hola mundo (Created page with "= El primer programa = El primer programa en cualquier lenguaje de programación siempre es el famoso "Hola Mundo!". Para eso, hay que crear un directorio del proyecto primer...")
- 22:34, 19 January 2021 Lochi talk contribs created page Rustup (Created page with "Rustup es el instalador de Rust.")
- 22:25, 19 January 2021 Lochi talk contribs created page Instalación (Created page with "= Instalación de Rust = En una terminal, ingresar el siguiente comando: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh")