2nd_Sem_Bogachev/2025.02.14/7Ex/Примеры.txt
2025-03-02 14:38:34 +03:00

35 lines
No EOL
362 B
Text

Default:
{
s: 'some'
t: 'someone\nsome'
}
Проверка ?:
{
s: 's?ome'
t: 'some\nhome'
}
Проверка \s -> s:
{
s: 's\ome\\'
t: 'some\'
}
Проверка \:
{
s: 'some\\\'
t: 'not important'
}
Проверка \?:
{
s: '?oho'
t: 'haha?oho!'
}
Множество ?:
{
s: 'ha????ha'
t: 'hihihhahoho'
}