Skip to content

Commit

Permalink
#400 Update kvm-input-mode.md (usage examples)
Browse files Browse the repository at this point in the history
  • Loading branch information
o-sdn-o committed Jun 16, 2023
1 parent fe6b0b7 commit de51dd2
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion doc/kvm-input-mode.md
Original file line number Diff line number Diff line change
Expand Up @@ -320,4 +320,26 @@ Key | VirtCode | ScanCode | CtrlState | Not

## Mouse Buttons

...
...

## Usage Examples

### C++20

```c++
#include <iostream>

int main()
{
std::cout << "test" << '\n';
}
```

### Python

```python
#!/bin/python

while True:
print('test\n')
```

0 comments on commit de51dd2

Please sign in to comment.