aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2022-04-08 10:29:23 +0100
committerGitHub <noreply@github.com>2022-04-08 10:29:23 +0100
commitf2f1330238d46bb6e80eac33da99604ac2f99a52 (patch)
tree9acbf33caf235100bad1c8132208c09909c6182f
parent8a8b5c753fc39101583a5817d8552ab8a6197b7f (diff)
Add https://github.com/odin-lang/examples
-rw-r--r--examples/demo/demo.odin11
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin
index b3ce3ade9..b03345849 100644
--- a/examples/demo/demo.odin
+++ b/examples/demo/demo.odin
@@ -33,6 +33,10 @@ import "core:math/big"
core and vendor library collections.
Nightly Builds - https://odin-lang.org/docs/nightly/
Get the latest nightly builds of Odin.
+ More Odin Examples - https://github.com/odin-lang/examples
+ This repository contains examples of how certain things can be accomplished
+ in idiomatic Odin, allowing you learn its semantics, as well as how to use
+ parts of the core and vendor package collections.
*/
the_basics :: proc() {
@@ -2419,6 +2423,13 @@ matrix_type :: proc() {
}
main :: proc() {
+ /*
+ For More Odin Examples - https://github.com/odin-lang/examples
+ This repository contains examples of how certain things can be accomplished
+ in idiomatic Odin, allowing you learn its semantics, as well as how to use
+ parts of the core and vendor package collections.
+ */
+
when true {
the_basics()
control_flow()