Packages

C compiler built with Elixir. This library will only allow you to compile basic C programs.

Current section

Files

Jump to
exc lib structs token.ex
Raw

lib/structs/token.ex

defmodule Structs.Token do
@moduledoc """
Defines a Token that represents a valid, or invalid, token in the target
programming language.
"""
defstruct [:tag, :expression, :pos_y, :pos_x]
end