-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
enhancementNew feature or requestNew feature or request
Description
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 thestrings.lsl
library.import { String } from lamscript.strings
imports a class namedString
from thestrings.ls
libraryimport { * } from lamscript;
imports everything fromlamscript
- 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.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request