diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-07-01 19:58:18 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-07-01 19:58:18 +0200 |
commit | 4a95caabf15db0beeaceea09d1fb4b0964b119c9 (patch) | |
tree | 433c377c3e6cf5a50f7dd158bfd2212bbcc9c520 /README | |
parent | cb962cc19004c08381b4425da8cf12a36456a7cb (diff) |
Fix style
Diffstat (limited to 'README')
-rw-r--r-- | README | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -104,7 +104,7 @@ The build script also accepts some subcommands. They are as follows: REALLY_BIG :: 123'456'789'876'543'210; - pub MyFunc :: () int { + pub my_func :: () int { return BAR; } @@ -129,7 +129,7 @@ The build script also accepts some subcommands. They are as follows: in any order. This lets us define Inner *after* it gets called by the assignment to ‘x’. */ outer :: () { - x := Inner(5); + x := inner(5); inner :: (x: int) int { return x; |