mirror of
https://git.sfja.dk/Mikkel/slige.git
synced 2025-01-18 10:06:31 +00:00
12 lines
245 B
Plaintext
12 lines
245 B
Plaintext
|
mod std;
|
||
|
|
||
|
fn main() {
|
||
|
let ints = [1, 2, 3];
|
||
|
std::assert(ints[1] == 2, "test int array");
|
||
|
|
||
|
let strings = ["foo", "bar", "baz"];
|
||
|
std::assert(strings[1] == "bar", "test string array");
|
||
|
|
||
|
std::println("tests ran successfully");
|
||
|
}
|