I have a piece of code and I want to reuse it by creating libraries and putting in when making new projects. Can I do that and how? When creating the installation file (* .rhi) can add library files? I want to install it on another device.
EX
import rhinoscriptsyntax as rs def Com_number(Num1,Num2): if Num1>Num2:return Num1 else:return Num2
Please help me!