diff options
| author | Baitinq <[email protected]> | 2025-03-25 00:21:56 +0100 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-03-25 00:21:56 +0100 |
| commit | e4a1bc33759f2bc39379a93002ac632741cb5f8a (patch) | |
| tree | 3a089cd55a808fc907b0930cf66c2ce34779f010 /examples/5.src | |
| parent | Feature: Add "proper" pointer types (diff) | |
| download | pry-lang-e4a1bc33759f2bc39379a93002ac632741cb5f8a.tar.gz pry-lang-e4a1bc33759f2bc39379a93002ac632741cb5f8a.tar.bz2 pry-lang-e4a1bc33759f2bc39379a93002ac632741cb5f8a.zip | |
Feature: Add basic support for varargs
Diffstat (limited to 'examples/5.src')
| -rw-r--r-- | examples/5.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/5.src b/examples/5.src index fe07d38..f149e92 100644 --- a/examples/5.src +++ b/examples/5.src @@ -1,5 +1,5 @@ /* As you see, the language supports variable scopes */ -extern printf = (*i64, i64) => i64; +extern printf = (*i64, varargs) => i64; let x = 18; |