# Example: Specifying several modules from the `BioCro` module library.
modules <- module_paste(
'BioCro',
list('total_biomass', canopy_photosynthesis = 'c3_canopy')
)
# Compare to the output from `paste0`
modules2 <- paste0(
'BioCro',
':',
list('total_biomass', canopy_photosynthesis = 'c3_canopy')
)
str(modules)
str(modules2)
Run the code above in your browser using DataLab