ForthState

data class ForthState(var state: String = "", var base: Int = 10, var wordList: MutableList<String> = mutableListOf())

Constructors

Link copied to clipboard
constructor(state: String = "", base: Int = 10, wordList: MutableList<String> = mutableListOf())

Properties

Link copied to clipboard
var base: Int
Link copied to clipboard
Link copied to clipboard