Skip to content

Imperatorn/cstring

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

cstring

This is a work in progress.

Just a very simple Cstring type to interface with C a little easier

import cstring;
import core.stdc.stdio;

void main()
{
	Cstring c = "Hello world";

	puts(c);
}