test26
auto test26 = 
q{--- test26
	// test global parameter, assignment
	struct string { u64 length; u8* ptr; }
	@extern(module, "host")
	void print(string);
	string str;
	void run(){
		str.ptr = "Hello";
		str.length = 5;
		print(str);
	}
};
  
		tests passing 
		functionsvariables