├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .vscode └── settings.json ├── Dockerfile ├── Installer.cls ├── LICENSE ├── README.md ├── docker-compose.yml ├── irissession.sh ├── module.xml └── src └── ObjectScript ├── DataEntry1.cls ├── DataEntry2.cls ├── DataEntry3.cls ├── DataEntry4.cls ├── Examples.cls ├── Lookup1.cls ├── Lookup2.cls ├── Lookup3.cls ├── Person.cls └── RightTriangle.cls /.dockerignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems/Samples-ObjectScript/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems/Samples-ObjectScript/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems/Samples-ObjectScript/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems/Samples-ObjectScript/HEAD/Dockerfile -------------------------------------------------------------------------------- /Installer.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems/Samples-ObjectScript/HEAD/Installer.cls -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems/Samples-ObjectScript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems/Samples-ObjectScript/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems/Samples-ObjectScript/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /irissession.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems/Samples-ObjectScript/HEAD/irissession.sh -------------------------------------------------------------------------------- /module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems/Samples-ObjectScript/HEAD/module.xml -------------------------------------------------------------------------------- /src/ObjectScript/DataEntry1.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems/Samples-ObjectScript/HEAD/src/ObjectScript/DataEntry1.cls -------------------------------------------------------------------------------- /src/ObjectScript/DataEntry2.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems/Samples-ObjectScript/HEAD/src/ObjectScript/DataEntry2.cls -------------------------------------------------------------------------------- /src/ObjectScript/DataEntry3.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems/Samples-ObjectScript/HEAD/src/ObjectScript/DataEntry3.cls -------------------------------------------------------------------------------- /src/ObjectScript/DataEntry4.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems/Samples-ObjectScript/HEAD/src/ObjectScript/DataEntry4.cls -------------------------------------------------------------------------------- /src/ObjectScript/Examples.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems/Samples-ObjectScript/HEAD/src/ObjectScript/Examples.cls -------------------------------------------------------------------------------- /src/ObjectScript/Lookup1.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems/Samples-ObjectScript/HEAD/src/ObjectScript/Lookup1.cls -------------------------------------------------------------------------------- /src/ObjectScript/Lookup2.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems/Samples-ObjectScript/HEAD/src/ObjectScript/Lookup2.cls -------------------------------------------------------------------------------- /src/ObjectScript/Lookup3.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems/Samples-ObjectScript/HEAD/src/ObjectScript/Lookup3.cls -------------------------------------------------------------------------------- /src/ObjectScript/Person.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems/Samples-ObjectScript/HEAD/src/ObjectScript/Person.cls -------------------------------------------------------------------------------- /src/ObjectScript/RightTriangle.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems/Samples-ObjectScript/HEAD/src/ObjectScript/RightTriangle.cls --------------------------------------------------------------------------------