├── .gitignore ├── .vs └── Motes │ └── v15 │ └── .suo ├── Examples └── bottles.mot ├── InstallSetup ├── App.config ├── InstallSetup.csproj ├── Properties │ └── AssemblyInfo.cs └── Setup.cs ├── Installer ├── App.config ├── Install.cs ├── Installer.csproj └── Properties │ └── AssemblyInfo.cs ├── LICENSE ├── Motes.sln ├── Motes ├── App.config ├── Data.cs ├── Expressions.cs ├── Extensions.cs ├── Functions.cs ├── Motes.csproj ├── Motes.csproj.user ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── bin │ └── Debug │ │ └── test.mot └── smiling.ico ├── README.md └── VersionHistory.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/Motes/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/.vs/Motes/v15/.suo -------------------------------------------------------------------------------- /Examples/bottles.mot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/Examples/bottles.mot -------------------------------------------------------------------------------- /InstallSetup/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/InstallSetup/App.config -------------------------------------------------------------------------------- /InstallSetup/InstallSetup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/InstallSetup/InstallSetup.csproj -------------------------------------------------------------------------------- /InstallSetup/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/InstallSetup/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /InstallSetup/Setup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/InstallSetup/Setup.cs -------------------------------------------------------------------------------- /Installer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/Installer/App.config -------------------------------------------------------------------------------- /Installer/Install.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/Installer/Install.cs -------------------------------------------------------------------------------- /Installer/Installer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/Installer/Installer.csproj -------------------------------------------------------------------------------- /Installer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/Installer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/LICENSE -------------------------------------------------------------------------------- /Motes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/Motes.sln -------------------------------------------------------------------------------- /Motes/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/Motes/App.config -------------------------------------------------------------------------------- /Motes/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/Motes/Data.cs -------------------------------------------------------------------------------- /Motes/Expressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/Motes/Expressions.cs -------------------------------------------------------------------------------- /Motes/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/Motes/Extensions.cs -------------------------------------------------------------------------------- /Motes/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/Motes/Functions.cs -------------------------------------------------------------------------------- /Motes/Motes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/Motes/Motes.csproj -------------------------------------------------------------------------------- /Motes/Motes.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/Motes/Motes.csproj.user -------------------------------------------------------------------------------- /Motes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/Motes/Program.cs -------------------------------------------------------------------------------- /Motes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/Motes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Motes/bin/Debug/test.mot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/Motes/bin/Debug/test.mot -------------------------------------------------------------------------------- /Motes/smiling.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/Motes/smiling.ico -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/README.md -------------------------------------------------------------------------------- /VersionHistory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteffenBlake/Motes/HEAD/VersionHistory.txt --------------------------------------------------------------------------------