program PE32_CUI 'Test';
#include 'platform_def.zir';
#include 'console.zir';
const BUFLEN = 100;
char buf[BUFLEN];
print 'Enter something:';
gets(@buf, sizeof buf);
println 'You entered: "', buf, '"';
wait_key();
ExitProcess(0);
program KOLIBRI32 'Test';
#include 'platform_def.zir';
#include 'console.zir';
const BUFLEN = 100;
char buf[BUFLEN];
print 'Enter something:';
gets(@buf, sizeof buf);
println 'You entered: "', buf, '"';
wait_key();
ExitProcess(0);