Skip to content

Commit c719990

Browse files
committed
readme edits
1 parent 7fd2f68 commit c719990

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -226,25 +226,21 @@ f[0](y) := T
226226
f[n](y) := f[n - 1](y)
227227
```
228228

229-
which you can use in your program as follows:
229+
which you can use in your spec as follows:
230230

231231
```
232232
o1[t] = 0 && f(i1[t])
233233
```
234234

235-
Or also, you can use the following recurrence relation definition
235+
Also, you can use the following recurrence relation definition
236236

237237
```
238238
g[0](y) := 0
239239
g[n](y) := g[n](y)'
240240
```
241241

242-
which takes as argument a Boolean function and
243-
alternates between 0 and 1 depending on the parity of n.
244-
245-
To get all the details about the Tau Language, please refer to the Section
246-
[The Tau Language](#the-tau-language). You can find there all the details
247-
about the syntax and semantics of the language.
242+
which defines a function (rather a predicate) and alternates between 0 and 1
243+
depending on the parity of n.
248244

249245
In the [demos](https://github.com/IDNI/tau-lang/tree/main/demos) folder you
250246
can find lots of examples regarding how to use the Tau Language, its semantics

0 commit comments

Comments
 (0)