mirror of
https://github.com/ldmud/ldmud
synced 2026-08-12 14:26:05 -04:00
Fully support the LPC type system in Python, providing representations for basic types (int, float, string, bytes), named (lightweight) object types, concrete struct types and union types.
6 lines
100 B
C
6 lines
100 B
C
/* Testing usage of struct types of an unloaded program. */
|
|
|
|
struct test_struct
|
|
{
|
|
int value;
|
|
};
|