Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
Merge branch 'master' of github.com:margual56/TuringMachine
Browse files Browse the repository at this point in the history
  • Loading branch information
margual56 committed Nov 9, 2021
2 parents 7386557 + e92c2ab commit c0f08ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Example:

Comments can be written using `//`

So a fully-working program would look like this (from [Example1.tm](https://github.com/margual56/TuringMachine/blob/8517c6134f74cfb1042d1a34e34811b2b86143bd/Examples/Example1.tm)):
So a fully-working program would look like this (from [Example1.tm](https://github.com/margual56/TuringMachine/blob/8517c6134f74cfb1042d1a34e34811b2b86143bd/Examples/Example1.tm), it adds the two input numbers):
```Td
{q011101111};
Expand All @@ -39,7 +39,7 @@ So a fully-working program would look like this (from [Example1.tm](https://gith
(q2, 0, 1, L, q3);
(q2, 1, 1, R, q2);
(q3, 1, 0, L ,q4);
(q3, 1, 1, L ,q4);
(q4, 1, 1, L, q4);
(q4, 0, 0, L, q5);//2
Expand Down

0 comments on commit c0f08ce

Please sign in to comment.