diff options
| author | Paul Buetow <paul@buetow.org> | 2023-04-09 13:36:34 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2023-04-09 13:36:34 +0300 |
| commit | 351048311cb180e2691604d6c9ba980fcfcd2eeb (patch) | |
| tree | 93171e4256f0e4d7f807f606fdb7d608ffa62cd0 /gemfeed/2010-05-09-the-fype-programming-language.gmi | |
| parent | a3dc0c92d373be7f50d06304ef08a578ea7550d1 (diff) | |
Update content for gemtext
Diffstat (limited to 'gemfeed/2010-05-09-the-fype-programming-language.gmi')
| -rw-r--r-- | gemfeed/2010-05-09-the-fype-programming-language.gmi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gemfeed/2010-05-09-the-fype-programming-language.gmi b/gemfeed/2010-05-09-the-fype-programming-language.gmi index 0cdb7270..3cddb4c2 100644 --- a/gemfeed/2010-05-09-the-fype-programming-language.gmi +++ b/gemfeed/2010-05-09-the-fype-programming-language.gmi @@ -23,7 +23,7 @@ The Fype interpreter is written in an object-oriented style of C. Each "main com To give you an idea of how it works here as an example is a snippet from the main Fype "class header": -``` +```c typedef struct { Tupel *p_tupel_argv; // Contains command line options List *p_list_token; // Initial list of token @@ -34,7 +34,7 @@ typedef struct { And here is a snippet from the primary Fype "class implementation": -``` +```c Fype* fype_new() { Fype *p_fype = malloc(sizeof(Fype)); |
