Voiced dental fricative

From Esolang
Jump to navigation Jump to search
Logo

Voiced dental fricative or "ðis" is Schwa-derived language.

Description

Like in Schwa, it has two States:

  • Voiceless(or θ)
  • Voiced(or ð)

And 4 commands:

  • t
  • d
  • h
  • e

Commands do different things in each state(In start of proggram state is "Voiceless"). Here is table, which show what commands do in each state

Command Voicless State Voiced State
t Get input and store it in accumulator Output accumulator
d Start a while loop, which ends when accumulator contain ð or θ Start a while loop, which ends when accumulator contain ð or θ
h Switch State Switch State
e End while loop End while loop

Examples

Cat

dththe

Explaination:

d - Start While Loop
 t - Get input
  h - Switch State
   t - Output
    h - Switch State to make loop work
     e - Ends While Loop

See Also