Guest User

Untitled

a guest
Oct 7th, 2024
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. units_table = [
  2. ["mm", 1],
  3. ["cm", 10],
  4. ["dm", 100],
  5. ["m", 1000],
  6. ["inch", 25.4],
  7. ["feet", 304.8]
  8. ];
  9. module set_unit(desc){
  10. x_ = search([desc], units_table, num_returns_per_match = 1);
  11. echo(x_);
  12. if (x_ == undef) {
  13. x_ = [0];
  14. }
  15. units_table_index = x_[0];
  16. echo(units_table_index);
  17. echo("unit", u_desc(), "set to", u());
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment