example state

This commit is contained in:
Rowan Torbitzky-Lane 2025-01-19 00:16:21 -06:00
parent 7d802a0fa4
commit a756e5d584

View File

@ -84,3 +84,18 @@ emptyState =
_input = Map.empty _input = Map.empty
} }
exampleState :: State
exampleState =
State
{ _exec = [],
_int = [32, 56],
_float = [3.23, 9.235],
_bool = [True, False],
_string = ["abc", "123"],
_parameter = [],
_intVector = [[1,2], [5,6,8]],
_floatVector = [[1.234, 9.21], [5.42, 6.221, 8.5493]],
_boolVector = [[True, False], [False, False, True]],
_stringVector = [["def", "567"], ["gamer", "fellah", "live action how to train your dragon"]],
_input = Map.empty
}