diff options
| author | Ginger Bill <bill@gingerbill.org> | 2016-09-19 23:59:26 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2016-09-19 23:59:26 +0100 |
| commit | 59b0cf61efdccc44efafda24ff59399dde6afc4d (patch) | |
| tree | 35162a81623e3482929f7c6e3415d517cdf478eb /code/old_demos | |
| parent | 3b266b194f36507208b6f90145475d93b53896ee (diff) | |
fmt improvement; Minor refactoring
Diffstat (limited to 'code/old_demos')
| -rw-r--r-- | code/old_demos/demo002.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/old_demos/demo002.odin b/code/old_demos/demo002.odin index b9923f37a..ddb38c1e6 100644 --- a/code/old_demos/demo002.odin +++ b/code/old_demos/demo002.odin @@ -120,7 +120,7 @@ variadic_procedures :: proc() { print_prefix_f32s("a"); nl() print_prefix_f32s("b", 1); nl() - print_prefix_f32s("c", 1, 2, 3); nl() +7 print_prefix_f32s("c", 1, 2, 3); nl() // Internally, the variadic procedures get allocated to an array on the stack, // and this array is passed a slice |