mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 11:06:54 -04:00
5 lines
153 B
Python
5 lines
153 B
Python
# split
|
|
# ^ @comment
|
|
assert_eq('foo bar'.split(' '), ['foo', 'bar'])
|
|
assert_eq("foo %s bar %d" % ("arg1", 2), "foo arg1 bar 2")
|
|
# ^ @printf
|