You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are going to want something like Rust's raw strings (r"foo" or r#"foo"#, etc). We'll probably have to extend the tokenizer to support prefixes like r"foo", too, I forget if I handled that. We may also want strings that just skip the margin and whitespace munging.
We probably also want something like print that doesn't add a newline -- but maybe that could be handled by an optional argument (print(f, newline: false).await) if we supported those.
The text was updated successfully, but these errors were encountered:
We are going to want something like Rust's raw strings (
r"foo"
orr#"foo"#
, etc). We'll probably have to extend the tokenizer to support prefixes liker"foo"
, too, I forget if I handled that. We may also want strings that just skip the margin and whitespace munging.We probably also want something like
print
that doesn't add a newline -- but maybe that could be handled by an optional argument (print(f, newline: false).await
) if we supported those.The text was updated successfully, but these errors were encountered: