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/1.src | |
| parent | Feature: Add "proper" pointer types (diff) | |
| download | interpreter-e4a1bc33759f2bc39379a93002ac632741cb5f8a.tar.gz interpreter-e4a1bc33759f2bc39379a93002ac632741cb5f8a.tar.bz2 interpreter-e4a1bc33759f2bc39379a93002ac632741cb5f8a.zip | |
Feature: Add basic support for varargs
Diffstat (limited to 'examples/1.src')
| -rw-r--r-- | examples/1.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/1.src b/examples/1.src index a31d791..05e0121 100644 --- a/examples/1.src +++ b/examples/1.src @@ -1,4 +1,4 @@ -extern printf = (*i64, i64) => i64; +extern printf = (*i64, varargs) => i64; let main = () => i64 { let s = "hello"; |