We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The file try_ruby_190.md defines an error message. However, I can't get this error message to pop up. The answer regex probably needs to be different.
lang: EN title: Sadly, You Hate Toast Poetry answer: (toast){0} load: prev ok: Excellent error: Still smells like toast to me
lang: EN
title: Sadly, You Hate Toast Poetry
answer: (toast){0}
load: prev
ok: Excellent
error: Still smells like toast to me
The text was updated successfully, but these errors were encountered:
we could do honeydew[\s\S]*?honeydew. This protects from use of sub as well.
honeydew[\s\S]*?honeydew
sub
Sorry, something went wrong.
Hm. Course says to use anything except of toast... Maybe this would work better: /\A([\s\S](?!toast))*\z/
/\A([\s\S](?!toast))*\z/
This could be a better idea if we were to catch toast as the first word: \A((?<!toast)[\s\S])*\z
toast
\A((?<!toast)[\s\S])*\z
No branches or pull requests
The file try_ruby_190.md defines an error message. However, I can't get this error message to pop up. The answer regex probably needs to be different.
lang: EN
title: Sadly, You Hate Toast Poetry
answer: (toast){0}
load: prev
ok: Excellent
error: Still smells like toast to me
The text was updated successfully, but these errors were encountered: