10 lines
106 B
Python
10 lines
106 B
Python
|
#!/usr/bin/python3
|
||
|
|
||
|
data = {
|
||
|
0: "air",
|
||
|
1: "stone",
|
||
|
2: "dirt",
|
||
|
3: "grass",
|
||
|
4: "rock"
|
||
|
}
|