diff options
| author | nakst <> | 2020-09-15 23:22:19 +0100 |
|---|---|---|
| committer | nakst <> | 2020-09-15 23:22:19 +0100 |
| commit | c92860e142b15c8b87fb039471fc125e285f6fb1 (patch) | |
| tree | c54b031d06ad434bb3b0276dee6e38cffd6f0e50 /examples | |
| parent | 4cf240ca0538f3221cc469921daf8e12ae757b23 (diff) | |
update essence platform
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/demo/demo.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin index fd94f1391..ad89691a5 100644 --- a/examples/demo/demo.odin +++ b/examples/demo/demo.odin @@ -712,8 +712,8 @@ union_type :: proc() { using_statement :: proc() { fmt.println("\n# using statement"); // using can used to bring entities declared in a scope/namespace - // into the current scope. This can be applied to import declarations, - // import names, struct fields, procedure fields, and struct values. + // into the current scope. This can be applied to import names, struct + // fields, procedure fields, and struct values. Vector3 :: struct{x, y, z: f32}; { |