Revert "Revert 0.7.6 code for 0.7.5 re-release"

This reverts commit d1349c9cfb.
This commit is contained in:
Christoffer Lerno
2025-09-05 23:30:35 +02:00
parent d1349c9cfb
commit e605a21fd3
63 changed files with 1148 additions and 796 deletions

View File

@@ -273,7 +273,7 @@ fn void contains_char()
assert(!test.contains_char('x'));
}
fn void test_base_13_convesion()
fn void test_base_13_conversion()
{
assert("13".to_long(13)!! == 13 + 3);
assert("1a".to_long(13)!! == 13 + 10);
@@ -382,4 +382,4 @@ fn void test_snake_pascal_self_modify()
s2.convert_snake_to_pascal();
test::eq(s2, s[1]);
}
}
}