Test descriptions

This commit is contained in:
neumond 2023-05-22 14:42:30 +03:00
parent c2e1737000
commit d57e6c60fe
3 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,8 @@
`py helloworld.py 42 abc`
```py
print(args)
for _ in range(2):
print("Hello world!")
print("Привет мир!")
```

7
tests/proto/repl2p2.md Normal file
View file

@ -0,0 +1,7 @@
`py`
```py
>>> 2+2
4
>>> (ctrl+D)
```

8
tests/proto/replterm.md Normal file
View file

@ -0,0 +1,8 @@
`py`
```py
>>> 'a' * 5
'aaaaa'
>>> (ctrl+C)
interrupted
```