diff options
| author | Baitinq <[email protected]> | 2025-03-24 00:57:07 +0100 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-03-24 00:57:07 +0100 |
| commit | 0852417019c6129dc356d84d3bd6cb61d78ba7db (patch) | |
| tree | f685d41db3175c716fd1f302bc27366067bd028c /examples/5.src | |
| parent | Feature: Add support for strings (diff) | |
| download | interpreter-0852417019c6129dc356d84d3bd6cb61d78ba7db.tar.gz interpreter-0852417019c6129dc356d84d3bd6cb61d78ba7db.tar.bz2 interpreter-0852417019c6129dc356d84d3bd6cb61d78ba7db.zip | |
Feature: Add initial support for pointers
Diffstat (limited to 'examples/5.src')
| -rw-r--r-- | examples/5.src | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/5.src b/examples/5.src index 7c767ea..954470d 100644 --- a/examples/5.src +++ b/examples/5.src @@ -1,4 +1,5 @@ /* As you see, the language supports variable scopes */ +extern printf = (ptr, i64) => i64; let x = 18; |