Deux is an experimental programming language designed to explore innovative language features
$ ant packagesample.de
return 10 abcd; //invalid token abcd $ java -jar ./build/deuxc.jar docs/sample.dx
# output
sample.de:2:11 Error 'abcd' unrecognized symbol
2 | return 64 abcd;
| ^The goal is to compile the following statement
return 64;to this equivalent assembly nasm code
global _start
_start:
mov rax, 60
mov rdi, 64
syscall