mirror of
https://github.com/radareorg/radare2.git
synced 2025-04-18 09:29:57 +00:00

* Use trim to avoid noisy chars in symbol names for egg/lang * Properly handle osx/w32 os strings in r_egg * Make string construction works in r_egg * Initial work on while() constructs
10 lines
132 B
R
10 lines
132 B
R
/* hello world in r_egg */
|
|
write@syscall(4);
|
|
exit@syscall(1);
|
|
|
|
main@global(128) {
|
|
.var0 = "hi!\n";
|
|
write(1,.var0, 4);
|
|
exit(0);
|
|
}
|