How would I write the following in K/N? ```static ...
# kotlin-native
m
How would I write the following in K/N?
Copy code
static PyObject *
spam_system(PyObject *self, PyObject *args)
{
    const char *command;
    int sts;

    if (!PyArg_ParseTuple(args, "s", &command))
        return NULL;

    // ...

    return Py_INCREF(Py_None);
}
What I've got so far:
Copy code
private val spamSystem = staticCFunction { self: PyObjectT, args: PyObjectT ->
    val command = ???

    if (PyArg_ParseTuple(args, "", ???) == 0) {
        return@staticCFunction null
    }

    // ...

    Py_None.incref()
}
d
val command = alloc<CPointerVar<ByteVar>>()
command.ptr