Files
Odin/examples/all/all_main.odin
T

115 lines
2.7 KiB
Odin

package all
// Imports every package
// This is useful for knowing what exists and producing documentation with `odin doc`
import bufio "core:bufio"
import bytes "core:bytes"
import c "core:c"
import libc "core:c/libc"
import compress "core:compress"
import gzip "core:compress/gzip"
import zlib "core:compress/zlib"
import container "core:container"
import dynlib "core:dynlib"
import encoding "core:encoding"
import base32 "core:encoding/base32"
import base64 "core:encoding/base64"
import csv "core:encoding/csv"
import hxa "core:encoding/hxa"
import json "core:encoding/json"
import fmt "core:fmt"
import hash "core:hash"
import image "core:image"
import png "core:image/png"
import io "core:io"
import log "core:log"
import math "core:math"
import big "core:math/big"
import bits "core:math/bits"
import fixed "core:math/fixed"
import linalg "core:math/linalg"
import glm "core:math/linalg/glsl"
import hlm "core:math/linalg/hlsl"
import rand "core:math/rand"
import mem "core:mem"
import ast "core:odin/ast"
import doc_format "core:odin/doc-format"
import odin_format "core:odin/format"
import odin_parser "core:odin/parser"
import odin_printer "core:odin/printer"
import odin_tokenizer "core:odin/tokenizer"
import os "core:os"
import path "core:path"
import filepath "core:path/filepath"
import reflect "core:reflect"
import runtime "core:runtime"
import slice "core:slice"
import sort "core:sort"
import strconv "core:strconv"
import strings "core:strings"
import sync "core:sync"
import sync2 "core:sync/sync2"
import scanner "core:text/scanner"
import thread "core:thread"
import time "core:time"
import unicode "core:unicode"
import utf8 "core:unicode/utf8"
import utf16 "core:unicode/utf16"
main :: proc(){}
_ :: bufio
_ :: bytes
_ :: c
_ :: libc
_ :: compress
_ :: gzip
_ :: zlib
_ :: container
_ :: dynlib
_ :: encoding
_ :: base32
_ :: base64
_ :: csv
_ :: hxa
_ :: json
_ :: fmt
_ :: hash
_ :: image
_ :: png
_ :: io
_ :: log
_ :: math
_ :: big
_ :: bits
_ :: fixed
_ :: linalg
_ :: glm
_ :: hlm
_ :: rand
_ :: mem
_ :: ast
_ :: doc_format
_ :: odin_format
_ :: odin_parser
_ :: odin_printer
_ :: odin_tokenizer
_ :: os
_ :: path
_ :: filepath
_ :: reflect
_ :: runtime
_ :: slice
_ :: sort
_ :: strconv
_ :: strings
_ :: sync
_ :: sync2
_ :: scanner
_ :: thread
_ :: time
_ :: unicode
_ :: utf8
_ :: utf16