raw strings with r'raw'

This commit is contained in:
Alexander Medvednikov 2019-10-06 03:56:08 +03:00
parent ebc50432c7
commit 6a0599b5f4
3 changed files with 28 additions and 13 deletions

View file

@ -284,6 +284,6 @@ fn test_multi() {
assert a[0][2] == 3
assert a[1][2] == 6
// TODO
//b := [ [[1,2,3],[4,5,6]], [[1,2]] ]
//assert b[0][0][0] == 1
b := [ [[1,2,3],[4,5,6]], [[1,2]] ]
assert b[0][0][0] == 1
}