GameLib is a collection of libraries for creating applications in Cakelisp.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

10 lines
288 B

(add-cakelisp-search-directory "Dependencies/cakelisp/runtime")
(import "CHelpers.cake")
(declare-extern-function
reloadableEntryPoint (&return bool))
(c-import "<stdio.h>")
(defun main (&return int)
(while (reloadableEntryPoint) (printf "Reloaded, but not really\n"))
(return 0))