ox

The Ox programming language, compiler and tools (WIP)
Log | Files | Refs | README | LICENSE

commit ba4d6709b055e7e7ffc6581809388ce97a77a58b
parent b67ee1e46dc27deaea607aa0d7f8a8107a2127ac
Author: citbl <citbl@citbl.org>
Date:   Mon, 20 Oct 2025 20:56:12 +1000

assignment from other source

Diffstat:
Aex11.ox | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/ex11.ox b/ex11.ox @@ -0,0 +1,5 @@ +void main() { + string harry = "Petulia"; + string barry = harry; + print(barry); +}