fixed minor example details

This commit is contained in:
gijsio
2020-07-28 13:37:04 +02:00
parent d47458d25f
commit 91a08bf1c7
8 changed files with 52 additions and 24 deletions

View File

@@ -21,4 +21,7 @@ print("\t tabbed in")
print("hello world: " + str(machine.rng()) + " random number" )
#or use format
print("hello world: {} {}".format(machine.rng(), " random number"))
#you can also ask for user input
result = input("what's up?\n")
print(result)
```