// - TTF file loading and prerendering to a texture map
// - More things I can't think of at the moment
+// Something to consider is that there are two major use cases for a library like this. Either,
+// someone will create an application from scratch, or they will integrate it into their existing
+// code. This library should make both of those situations easy to manage.
+
// I don't want to plan this too much. I want to just dive in and get working on it.
package imgui
--- /dev/null
+#load "core/std"
+#load "lib/imgui"
+
+use package core
+use package imgui as imgui
+
+
+
+main :: (args: [] cstr) {
+ println("Hey! We got here!");
+}
\ No newline at end of file