Skip to content

Instantly share code, notes, and snippets.

View Sufrostico's full-sized avatar

Aurelio Sanabria Sufrostico

View GitHub Profile
@Sufrostico
Sufrostico / C_struct.p6
Last active February 24, 2016 13:45
Perl6 Cstruct
struct sb_stemmer {
struct SN_env * (*create)(void);
void (*close)(struct SN_env *);
int (*stem)(struct SN_env *);
struct SN_env * env;
};
class sb_stemmer is repr('CStruct') {
has Pointer $.create;