we script!
a scripting language framework for building English like scripting language.
Sentence
taowen login with password 123
[Scriptable] void user_login_with_password(string user, string password)
Whitespace
tao wen login with password 123 perfectly OK.
Punctuation
taowen login with password 123, repeat 3 times Punctuations will be supported automatically, as they will be ignored.
Clause
taowen login with password 123, repeat 3 times
[Scriptable]
public void action_repeat_count_times(Clause action, int count)
{
while (count-- > 0)
{
action();
}
}