Libraries are an essential part of any programming language. They provide an easy way to share and distribute code which is why Lamscript needs them. Lamscript should most likely have: - [ ] Import statements - `import { * } from lamscript.strings` imports everything from the `strings.lsl` library. - `import { String } from lamscript.strings` imports a class named `String` from the `strings.ls` library - `import { * } from lamscript;` imports everything from `lamscript` - [ ] An abstraction for representing libraries and the modules that they're comprised of. - [ ] The ability to create libraries and modules within c++ and lamscript code.
Libraries are an essential part of any programming language. They provide an easy way to share and distribute code which is why Lamscript needs them.
Lamscript should most likely have:
import { * } from lamscript.stringsimports everything from thestrings.lsllibrary.import { String } from lamscript.stringsimports a class namedStringfrom thestrings.lslibraryimport { * } from lamscript;imports everything fromlamscript