We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 816b47a commit b2b4d67Copy full SHA for b2b4d67
‎src/Main.elm‎
@@ -94,7 +94,6 @@ evaluateProgram model =
94
newVmResult =
95
parsedProgram
96
|> Result.andThen (\node -> Evaluator.evaluate node (Ok vm))
97
- |> Debug.log "Final VM"
98
in
99
case newVmResult of
100
Ok newVm ->
@@ -111,7 +110,7 @@ setCode code model =
111
110
112
setInput : String -> Model -> Model
113
setInput input model =
114
- { model | inputData = Debug.log "input" input }
+ { model | inputData = input }
115
116
117
0 commit comments