seqlings 3.0.7

Interactive exercises for learning Seq, a stack-based programming language
# Exercise: drop
#
# The `drop` word removes the top value from the stack.
#
# Stack effect: ( a -- )
#
# Example:
#   5 10 drop    # Stack: ( 5 )  - the 10 is gone
#
# Your task: Use `drop` to remove the 99, leaving just 42.
# When done, delete the marker line below.

# I AM NOT DONE

: test-drop ( -- )
    42 99
    # Your code here - add drop
    # Do not edit below this line
    42 test.assert-eq
;