daml/compiler/damlc/base-rst-template.rst
Gary Verhaegen 878429e3bf
update copyright notices to 2020 (#3939)
copyright update 2020

* update template
* run script: `dade-copyright-headers update .`
* update script
* manual adjustments
* exclude frozen proto files from further header checks (by adding NO_AUTO_COPYRIGHT files)
2020-01-02 21:21:13 +01:00

22 lines
550 B
ReStructuredText

.. Copyright (c) 2020 The DAML Authors. All rights reserved.
.. SPDX-License-Identifier: Apache-2.0
.. _stdlib-reference-base:
The standard library
====================
The DAML standard library is a collection of DAML modules that can be used to implement concrete applications.
Usage
*****
The standard library is included in the DAML compiler so it can
be used straight out of the box. You can import modules from the standard library just like your own, for example:
.. code-block:: daml
import DA.Optional
import DA.Time
{{{body}}}