diff --git a/docs/gettingstarted.md b/docs/gettingstarted.md index 6fb4a38..0f6611b 100644 --- a/docs/gettingstarted.md +++ b/docs/gettingstarted.md @@ -67,7 +67,7 @@ Types are *inferred*, which means that specifying types of variables or returned Note: While primitives types (`String`, `int`, `double`, `boolean`, `float`) will be transpiled to their equivalents for the target of the transpiler, this is not the case for other types. -Every variable has a static type by default; it is possible to make a **non-final** variable dynamic by adding `dyn`/`dynamic` to the attributes or making it the return type: +Every variable has a static type by default at compile time; it is possible to make a **non-final** variable dynamic by adding `dyn`/`dynamic` to the attributes or making it the return type: ``` dyn helloWorld = 0 # helloWorld: dyn = 0 would also work helloWorld = "Hello, World!"