Skip to content

Commit

Permalink
Adding the famous "Hello World"
Browse files Browse the repository at this point in the history
  • Loading branch information
QuickWrite committed Nov 21, 2024
1 parent db18062 commit b838139
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions examples/hello_world.tau
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# The standard "Hello World" program in Tau

symbols = 0, HELLO, WORLD
blank = 0
start = HELLO
tape = 0,0

----

HELLO {
_ = HELLO, RIGHT, WORLD
}

WORLD {
_ = WORLD, RIGHT, HALT
}

0 comments on commit b838139

Please sign in to comment.