Skip to content

Commit b2b4d67

Browse files
🧼 Removes Debug.log invocations
1 parent 816b47a commit b2b4d67

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

‎src/Main.elm‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ evaluateProgram model =
9494
newVmResult =
9595
parsedProgram
9696
|> Result.andThen (\node -> Evaluator.evaluate node (Ok vm))
97-
|> Debug.log "Final VM"
9897
in
9998
case newVmResult of
10099
Ok newVm ->
@@ -111,7 +110,7 @@ setCode code model =
111110

112111
setInput : String -> Model -> Model
113112
setInput input model =
114-
{ model | inputData = Debug.log "input" input }
113+
{ model | inputData = input }
115114

116115

117116

0 commit comments

Comments
 (0)