02 / HABILIDADES

Mis conocimientos, manteniendo siempre la simplicidad, seguridad, eficiencia e innovación

skills.rsrust
// Build systems that stay understandable.
#[derive(Debug)]
struct Profile {
  design: &'static str,
  security: bool,
  tools: Vec<&'static str>,
}

impl Profile {
  fn new() -> Self {
    Self {
      design: "simple",
      security: true,
      tools: vec!["Python", "Rust"],
    }
  }
}

let profile = Profile::new();

Tecnologías y sistemas

01
Python
Avanzado
02
Swift
Intermedio
03
C++
Conocimientos prácticos
04
Rust
Aprendiendo
05
Unix Systems
Avanzado