sacalon / sacalon

Sacalon is a general purpose and open source programming language designed to build optimal, maintainable, reliable and efficient software.

Home Page:https://sacalon.github.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

manual memory management

bistcuite opened this issue · comments

commented

manual memory management with new and delete in hascal, e.g :

var a = new int(1)
var b : int* = new int(2)

delete a
delete b