Classical 0.3.1

dotnet add package Classical --version 0.3.1
                    
NuGet\Install-Package Classical -Version 0.3.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Classical" Version="0.3.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Classical" Version="0.3.1" />
                    
Directory.Packages.props
<PackageReference Include="Classical" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Classical --version 0.3.1
                    
#r "nuget: Classical, 0.3.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Classical@0.3.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Classical&version=0.3.1
                    
Install as a Cake Addin
#tool nuget:?package=Classical&version=0.3.1
                    
Install as a Cake Tool

A TypeScript Base Class Library.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.3.1 2,028 8/23/2015
0.3.0 1,760 7/18/2015
0.2.19 1,836 2/19/2015
0.2.18 1,647 2/18/2015
0.2.17 1,737 2/18/2015
0.2.16 1,699 2/18/2015
0.2.15 1,792 2/18/2015
0.2.14 1,567 1/28/2015
0.2.13 1,510 1/28/2015
0.2.12 1,563 1/28/2015
0.2.11 1,533 1/28/2015
0.2.10 1,481 1/28/2015
0.2.9 1,506 1/12/2015
0.2.8 1,581 1/12/2015
0.2.7 1,459 1/12/2015
0.2.6 1,577 1/12/2015
0.2.5 1,517 1/12/2015
0.2.4 1,445 1/12/2015
0.2.3 1,518 1/12/2015
0.2.2 1,538 1/12/2015
0.2.1 1,527 1/11/2015
0.2.0 1,506 1/11/2015
0.1.14 1,500 1/8/2015
0.1.13 1,985 12/24/2014
0.1.12 1,789 12/22/2014
0.1.11 1,925 12/21/2014
0.1.10 1,864 12/21/2014
0.1.9 1,916 12/20/2014
0.1.8 1,938 12/20/2014
0.1.7 1,885 12/20/2014
0.1.6 1,907 12/20/2014
0.1.5 2,193 12/19/2014
0.1.4 1,904 12/19/2014
0.1.3 1,826 12/19/2014
0.1.2 1,722 12/16/2014
0.1.1 1,700 12/16/2014
0.1.0 1,823 12/16/2014

- Classical.Assert now uses the native JavaScript Error rather than our Exception class.

//After getting started using Introduction.js
//write your first few lines of Classical.js using this template
module Classical.Introduction {

   import Assert = Classical.Assert;
   import Expression = Classical.Expression;
   import u = Utilities;
   import r = Classical.Reflection;
   import e = Classical.Events;
   import b = Classical.Binding;
   import cc = Classical.Collections;
   import bc = Classical.Binding.Collections;
   import a = Classical.Aspects;

   //Explore each of the modules above using intellisense
}