diff options
| author | gingerBill <bill@gingerbill.org> | 2022-02-19 15:45:01 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-02-19 15:45:01 +0000 |
| commit | 276e014d180dc571571cab341dbadadf2cf07594 (patch) | |
| tree | 004987b4e8c711e5f073572caa2f479025b3170c /examples | |
| parent | 23be56af597882100db9a167a82771a98b654cf5 (diff) | |
Update comment in demo.odin
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/demo/demo.odin | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin index a4b678ae7..044860ff7 100644 --- a/examples/demo/demo.odin +++ b/examples/demo/demo.odin @@ -11,22 +11,28 @@ import "core:intrinsics" import "core:math/big" /* - The Odin programming language is fast, concise, readable, pragmatic and open sourced. - It is designed with the intent of replacing C with the following goals: - * simplicity - * high performance - * built for modern systems - * joy of programming + Odin is a general-purpose programming language with distinct typing built + for high performance, modern systems and data-oriented programming. + + Odin is the C alternative for the Joy of Programming. # Installing Odin Getting Started - https://odin-lang.org/docs/install/ Instructions for downloading and install the Odin compiler and libraries. # Learning Odin + Getting Started - https://odin-lang.org/docs/install/ + Getting Started with Odin. Downloading, installing, and getting your + first program to compile and run. Overview of Odin - https://odin-lang.org/docs/overview/ - An overview of the Odin programming language. + An overview of the Odin programming language and its features. Frequently Asked Questions (FAQ) - https://odin-lang.org/docs/faq/ Answers to common questions about Odin. + Packages - https://pkg.odin-lang.org/ + Documentation for all the official packages part of the + core and vendor library collections. + Nightly Builds - https://odin-lang.org/docs/nightly/ + Get the latest nightly builds of Odin. */ the_basics :: proc() { |