Implemented boolean literals
This commit is contained in:
parent
91f34bc88f
commit
5f46a6f14e
11 changed files with 69 additions and 13 deletions
|
@ -2,6 +2,6 @@ extern kernel32 {
|
|||
VirtualFree(address *any, size uint, type uint32) -> bool
|
||||
}
|
||||
|
||||
free(address []any) -> int {
|
||||
return kernel32.VirtualFree(address-8, len(address)+8, mem.decommit)
|
||||
free(address []any) {
|
||||
kernel32.VirtualFree(address-8, len(address)+8, mem.decommit)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue