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)>>
===