Update Examples

Glen Whitney 2024-08-22 03:10:40 +00:00
parent 6ee89e28df
commit 28311a1cae

@ -94,4 +94,100 @@ fn main
let mutable = true
```
</td></tr></table>
#### Literals and operators
Not really anything new in this subsection.
#### Tuples
<table>
<tr>
<th>Rust</th>
<th>Husht</th>
</tr>
<tr>
<td>
```
fn reverse(pair: (i32, bool)) -> (bool, i32) {
let (int_param, bool_param) = pair;
(bool_param, int_param)
}
#[derive(Debug)]
struct Matrix(f32, f32, f32, f32);
fn main() {
// A tuple with a bunch of different types.
let long_tuple = (1u8, 2u16, 3u32, 4u64,
-1i8, -2i16, -3i32, -4i64,
0.1f32, 0.2f64,
'a', true);
println!("Long tuple first value: {}", long_tuple.0);
println!("Long tuple second value: {}", long_tuple.1);
let tuple_of_tuples = ((1u8, 2u16, 2u32), (4u64, -1i8), -2i16);
println!("tuple of tuples: {:?}", tuple_of_tuples);
let pair = (1, true);
println!("Pair is {:?}", pair);
println!("The reversed pair is {:?}", reverse(pair));
// Comma required in one-element tuples:
println!("One element tuple: {:?}", (5u32,));
println!("Just an integer: {:?}", (5u32));
let tuple = (1, "hello", 4.5, true);
let (a, b, c, d) = tuple;
println!("{:?}, {:?}, {:?}, {:?}", a, b, c, d);
let matrix = Matrix(1.1, 1.2, 2.1, 2.2);
println!("{:?}", matrix);
}
```
</td></td>
```
fn reverse(pair: (i32, bool)) -> (bool, i32)
let (int_param, bool_param) = pair;
(bool_param, int_param)
#[derive(Debug)]
struct Matrix(f32, f32, f32, f32);
fn main()
// A tuple with a bunch of different types.
let long_tuple = (1u8, 2u16, 3u32, 4u64
-1i8, -2i16, -3i32, -4i64
0.1f32, 0.2f64,
'a', true)
println! "Long tuple first value: {}", long_tuple.0
println! "Long tuple second value: {}", long_tuple.1
let tuple_of_tuples = ((1u8, 2u16, 2u32), (4u64, -1i8), -2i16)
println! "tuple of tuples: {:?}", tuple_of_tuples
let pair = (1, true)
println! "Pair is {:?}", pair
println! "The reversed pair is {:?}", reverse pair
// Comma required in one-element tuples:
println! "One element tuple: {:?}", (5u32,)
println! "Just an integer: {:?}", (5u32)
let matrix = Matrix
1.1, 1.2,
2.1, 2.2
println! "{:?}" matrix
```
</td></tr></table>