Prefix/Odin | Require Return Type | Return Named Inputs | |
---|---|---|---|
Empty Procedure | proc() | () -> void | () |
1 input, unnamed | proc(int) | (int) -> void | |
1 input, named | proc(x: int) | (x: int) -> void | (x: int) |
1 input, 1 output | proc(int) -> int | (x: int) -> int | (x: int) -> int |
2 inputs, 2 unnamed outputs | proc(int, int) -> (int, int) | (int, int) -> (int, int) | (x: int, y: int) -> (int, int) |
0 inputs, 2 named outputs | proc() -> (a: int, b: int) | () -> (a: int, b: int) | |
2 in |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package microui_raylib | |
import "core:fmt" | |
import "core:unicode/utf8" | |
import rl "vendor:raylib" | |
import mu "vendor:microui" | |
state := struct { | |
mu_ctx: mu.Context, | |
log_buf: [1<<16]byte, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
/******************************************************************************************* | |
* | |
* raylib - classic game: tetroid | |
* | |
* Sample game developed by Marc Palau and Ramon Santamaria | |
* | |
* This game has been created using raylib v1.3 (www.raylib.com) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package microui_sdl | |
import "core:fmt" | |
import "core:c/libc" | |
import SDL "vendor:sdl2" | |
import mu "vendor:microui" | |
state := struct { | |
mu_ctx: mu.Context, | |
log_buf: [1<<16]byte, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import "core:os" | |
import "core:fmt" | |
import "core:mem" | |
import "core:slice" | |
import "intrinsics" | |
Image_Dos_Header :: struct { | |
e_signature: u16, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package test | |
import "core:os" | |
import "core:fmt" | |
import "core:sync" | |
import "core:time" | |
import "core:thread" | |
import "core:text/scanner" | |
import "core:strings" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Production = production_name "=" [ Expression ] "." . | |
Expression = Alternative { "|" Alternative } . | |
Alternative = Term { Term } . | |
Term = production_name | token [ "…" token ] | Group | Option | Repetition . | |
Group = "(" Expression ")" . | |
Option = "[" Expression "]" . | |
Repetition = "{" Expression "}" . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
import urllib.request as req | |
from tokenize import tokenize | |
from io import BytesIO | |
import string | |
import os.path | |
import math | |
if not os.path.isfile("vulkan_core.h"): | |
src = req.urlopen("https://raw.githubusercontent.com/KhronosGroup/Vulkan-Headers/master/include/vulkan/vulkan_core.h").read().decode('utf-8') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package wasm_assembler | |
import "core:fmt" | |
PAGE_SIZE :: 1<<16; | |
Val_Type :: enum u8 { | |
void = 0x00, | |
i32 = 0x7f, | |
i64 = 0x7e, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package sokol_app | |
when ODIN_OS == "windows" do foreign import sapp_lib "sokol_app_d3d11.lib" | |
import "core:c" | |
MAX_TOUCHPOINTS :: 8; | |
MAX_MOUSEBUTTONS :: 3; | |
MAX_KEYCODES :: 512; |