Skip to content

Commit 84ddb61

Browse files
committed
removed mention of function groups from README.md
1 parent 64db0d5 commit 84ddb61

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

README.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -163,17 +163,6 @@ If a local scope exceeds the bounds of a given global scope, the program will le
163163
- `print(f(x):2)` - Prints the output of the function until 2.
164164

165165
In Funktion, any time a function is called with `.step()`, the function will generate the next output over the given time step, moving forward from the first step to also generate the next step when initially called. By default, `.step()` will step one defined time step. If the time step is defined as 2, it will step through the input value by 2. If a function with a time step of 2 calls itself with `.step(2)`, it will step twice, generating twice, stepping through the input value by 4. The local defined time step takes precedence over the global time step for all functions in the given program, which is 1 by default if not defined at the start of the program. The step value need not align with the global or even local time step, but the function will end generation once the end value is either reached or passed.
166-
167-
A function's generated outputs are influenced by any additional operations or mutations applied to it when stepped through. This mutation is shared between the functions involved for a given number of steps.
168-
169-
For example, consider the expression:
170-
171-
```funktion
172-
{G(x) + f(x)}.step(2)
173-
```
174-
175-
This will step through both `G` and `f` by `x`'s step value, while also making their output for that iteration the sum of their results for two generations.
176-
177166
---
178167

179168
### Chain of Questioning

0 commit comments

Comments
 (0)