No nothing about web dev !

but i am wanting to make my own code documention for the odin programmign langue as it helps me learn

How To Create A File In Odin Lang

creating a new file in odin is supper simpel, all we need to do is add in the os2 package found in import "core:os/os2"./n with the os2 package we can then use the, create, procedure to make our file.

package create_new_file

import "core:os/os2"

main::proc(){

file_handle, error := os2.create("new_file.txt")

}

Here's how to make a list: