Skip to content

Commit e04aefa

Browse files
authored
Update README.md
1 parent 070a8fd commit e04aefa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ This will read the file `example.py`, obfuscate it with randomized names of leng
5656
### Input (`example.py`):
5757
```python
5858
def greet(name):
59-
print(f"Helo, {name}")
59+
print(f"Name: , {name}")
6060

6161
greet("Alice")
6262
```
@@ -69,7 +69,7 @@ python obfuscator.py -i example.py -l 16 -o obfuscated_example.py
6969
### Output (`obfuscated_example.py`):
7070
```python
7171
def xzhlrvioukiqjkyo(ahtjqcvqjdakllay):
72-
print(f"Helo, {ahtjqcvqjdakllay}")
72+
print(f"Name: , {ahtjqcvqjdakllay}")
7373

7474
xzhlrvioukiqjkyo("Alice")
7575
```

0 commit comments

Comments
 (0)