Implemented assert keyword

This commit is contained in:
2024-07-25 16:47:25 +02:00
parent f0bc5039ee
commit f4dd9004be
14 changed files with 81 additions and 1 deletions

6
src/build/core/Defer.go Normal file
View File

@ -0,0 +1,6 @@
package core
// Defer executes the callback at the end of function compilation.
func (f *Function) Defer(call func()) {
f.deferred = append(f.deferred, call)
}