add number type and object
This commit is contained in:
17
src/runtime/objects/number/number.h
Normal file
17
src/runtime/objects/number/number.h
Normal file
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2025 William Bell
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
|
||||
#ifndef RUNTIME_NUMBER_H
|
||||
#define RUNTIME_NUMBER_H
|
||||
#include "../object.h"
|
||||
|
||||
extern ArgonObject *ARGON_NUMBER_TYPE;
|
||||
|
||||
void create_ARGON_NUMBER_TYPE();
|
||||
|
||||
ArgonObject *new_number_object(char *data);
|
||||
|
||||
#endif // RUNTIME_NUMBER_H
|
||||
Reference in New Issue
Block a user