2019-05-29 01:14:29 +07:00
|
|
|
#include <console>
|
|
|
|
|
|
|
|
const global_const = 0;
|
|
|
|
new stock global_var = 0;
|
|
|
|
new stock global_array[2];
|
2019-09-23 23:34:00 +02:00
|
|
|
new stock const global_const_var = 0;
|
2019-05-29 01:14:29 +07:00
|
|
|
forward global_func(); public global_func() { return 0; }
|
|
|
|
native global_native(const string[]) = print;
|