Skip to content

nilsmartel/super-duper-sniffle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 

Repository files navigation

super-duper-sniffle

Universal Type System in C

// this is how you would use it to create...
UniversalType integer_number = new_int(314);            // integers
UniversalType real_number = new_float(1.23);            // double precision floating point number
UniversalType word = new_string("Hello, World!");       // a string type
UniversalType prefers_rust_programming = new_bool(1);   // simple boolean

UniversalType result = arithmetic(new_int(24), new_float(3.2), MULTIPLY); // you can operate with them
UniversalType wtf = arithmetic(new_string("what "), new_string("the"), ADD); //Automatic String Concation
append_to_string(&wtf, new_string(" fuck?"));	//Easy String Concatination
println_universal(wtf);	//printing universal varibles

Releases

No releases published

Packages

No packages published

Languages