File tree 1 file changed +4
-8
lines changed 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -226,25 +226,21 @@ f[0](y) := T
226
226
f[n](y) := f[n - 1](y)
227
227
```
228
228
229
- which you can use in your program as follows:
229
+ which you can use in your spec as follows:
230
230
231
231
```
232
232
o1[t] = 0 && f(i1[t])
233
233
```
234
234
235
- Or also , you can use the following recurrence relation definition
235
+ Also , you can use the following recurrence relation definition
236
236
237
237
```
238
238
g[0](y) := 0
239
239
g[n](y) := g[n](y)'
240
240
```
241
241
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.
248
244
249
245
In the [ demos] ( https://github.com/IDNI/tau-lang/tree/main/demos ) folder you
250
246
can find lots of examples regarding how to use the Tau Language, its semantics
You can’t perform that action at this time.
0 commit comments