chapter 0.1.0

An implementation of the Yarn Spinner runtime.
Documentation
title: Start
---
// Testing types

// string equality
<<call assert("test" == "test")>>

// string case sensitivity
<<call assert("hi" != "HI")>>

// gt test
<<call assert(3 gt 2)>>

// lt test
<<call assert(1 lt 2)>>

// lte test
<<call assert(2 lte 2)>>

// gte test
<<call assert(2 gte 2)>>
===