10 lines
218 B
Plaintext
10 lines
218 B
Plaintext
const std = #import("std");
|
|
|
|
const main = fn() *!void {
|
|
const size = 0x1000;
|
|
|
|
const result = try std.page_allocator.allocate(size, alignment = 12);
|
|
result[0] = 0;
|
|
try std.page_allocator.free(result);
|
|
}
|