/scriptcs-adder

A script pack that can be used to perform additions. Useful for testing that script packs work correctly.

Primary LanguageC#OtherNOASSERTION

scriptcs-adder

Adder Script Pack

What is it?

A script pack that allows you to perform additions.

Usage

This is just useful for the acceptance tests.

var adder = Require<Adder>();

var value = adder.Add(3, 4);

Debug.Assert(value == 7);