- See docs for available functions, many BP pures should work apparently
- To convert a
round()
result into a float, you can f.ex. divide using a float.round(x) / 100
will produce an int, butround(x) / 100.0
(note the.0
) converts it into float.
Search
round()
result into a float, you can f.ex. divide using a float. round(x) / 100
will produce an int, but round(x) / 100.0
(note the .0
) converts it into float.