mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
11 lines
289 B
Plaintext
11 lines
289 B
Plaintext
import std;
|
|
|
|
fn int main()
|
|
{
|
|
$assert(@str_upper("Hello World") == "HELLO WORLD");
|
|
$assert(@str_lower("Hello World") == "hello world");
|
|
$assert(@str_find("Hello World", "o") == 4);
|
|
$assert(@str_find("Hello World", "w") == -1);
|
|
$assert(@str_hash("Hello C3") == 2193775821);
|
|
return 0;
|
|
} |