implement String.nth and OS.time in stdlib

This commit is contained in:
2025-06-29 16:10:39 +02:00
parent 21cac533f2
commit 62dd8b0d52
6 changed files with 37 additions and 90 deletions

View File

@@ -43,7 +43,6 @@ pub enum TokenType {
KeywordIn,
KeywordFunc,
KeywordReturn,
KeywordAssert,
Indent,
Dedent,
@@ -336,7 +335,6 @@ impl Tokenizer {
"in" => TokenType::KeywordIn,
"func" => TokenType::KeywordFunc,
"return" => TokenType::KeywordReturn,
"assert" => TokenType::KeywordAssert,
"true" => TokenType::True,
"false" => TokenType::False,
_ => TokenType::Identifier,