You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
davidrobert99 853b793519 uodate rust readme, adding dependencies & clarifications 2 years ago
..
README.md uodate rust readme, adding dependencies & clarifications 2 years ago

README.md

tuples

Instructions

  • Define a tuple structure to represent a Student.

  • Each student is identified by an id number of type i32, his/her name and his/her last name of type string.

  • Then define three functions to return the id, first name and last name.

Notions

Dependencies

meval = "0.2"

Expected Functions

pub fn id(student: &Student) -> i32 {
}

pub fn first_name(student: &Student) -> String {
}

pub fn last_name(student: &Student) -> String {
}

Usage

Here is a program to test your functions

use tuples::*;

fn main() {
	let student = Student(20, "Pedro".to_string(), "Domingos".to_string());
	println!("Student: {:?}", student);
	println!("Student first name: {}", first_name(&student));
	println!("Student last name: {}", last_name(&student));
	println!("Student Id: {}", id(&student));
}

And its output:

$ cargo run
Student: Student(20, "Pedro", "Domingos")
Student first name: Pedro
Student last name: Domingos
Student Id: 20
$