From 2a3606ca4ab1ce60dd333f4fd55b9d5ff6b4a24c Mon Sep 17 00:00:00 2001 From: Jose Mendoza <56417208+StunxFS@users.noreply.github.com> Date: Tue, 7 Nov 2023 14:31:48 -0400 Subject: [PATCH] update code_structure.md --- src/code_structure.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/code_structure.md b/src/code_structure.md index 5289593..35d06e8 100644 --- a/src/code_structure.md +++ b/src/code_structure.md @@ -26,11 +26,11 @@ On the top level only declarations are allowed. ```swift import { import_list, ... } from module; -const FOO: int32 = 0; +const FOO: int32 := 0; -static foo: int32 = 0; +static foo: int32 := 0; -alias Foo = Baz; +alias Foo := Baz; enum Foo { /* ... */ } @@ -42,5 +42,5 @@ extend Foo { /* ... */ } func foo() { /* ... */ } -test "Foo" { /* ... */ } +test "foo" { /* ... */ } ```