Damien George
10 years ago
3 changed files with 17 additions and 2 deletions
@ -0,0 +1,13 @@ |
|||
# check loading constants |
|||
|
|||
@micropython.native |
|||
def f(): |
|||
return 123456789012345678901234567890 |
|||
|
|||
print(f()) |
|||
|
|||
@micropython.native |
|||
def g(): |
|||
return 1.2 |
|||
|
|||
print(g()) |
@ -0,0 +1,2 @@ |
|||
123456789012345678901234567890 |
|||
1.2 |
Loading…
Reference in new issue