Browse Source

Merge pull request #1093 from 01-edu/tuples-rename-in-public-c-566

renaming the tuples exercise
1122-buz-zinga
MSilva95 2 years ago committed by GitHub
parent
commit
7c92d81f61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      subjects/generics_list/README.md
  2. 4
      subjects/tuples_refs/README.md

4
subjects/generics_list/README.md

@ -6,11 +6,11 @@ Create a linked list of generic values with the following methods.
- `new` which returns a new empty list.
- `push` which adds at the begining of the list a new element.
- `push` which adds at the beginning of the list a new element.
- `pop` which deletes the last added element to the list.
- `len` which returns size of the list.
- `len` which returns the size of the list.

4
subjects/tuples/README.md → subjects/tuples_refs/README.md

@ -1,4 +1,4 @@
## tuples
## tuples_refs
### Instructions
@ -27,7 +27,7 @@ meval = "0.2"
Here is a program to test your functions
```rust
use tuples::*;
use tuples_refs::*;
fn main() {
let student = Student(20, "Pedro".to_string(), "Domingos".to_string());
Loading…
Cancel
Save