Newer
Older
Tardis / lang / symbol.h
// SPDX-License-Identifier: MIT
// Copyright (c) 2023 John Watts and the LuminaSensum contributors

#ifndef SYMBOL_H
#define SYMBOL_H

// Symbols are integers with unique values
typedef int symbol;

// Find a unique value associated with the symbol's name
symbol find_symbol(char *name);

#endif