mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-13 21:26:38 +08:00
14 lines
203 B
Lua
14 lines
203 B
Lua
print("Helleo world!");
|
|
|
|
print("hf:", hf);
|
|
|
|
print("hf.mf:",hf.mf);
|
|
print("and now... ");
|
|
print("hf.mf.mifare",hf.mf.mifare);
|
|
|
|
hf.mf.nested("");
|
|
|
|
|
|
function foo()
|
|
print("Hi I am the foo function!");
|
|
end
|