From 35f337d2cebe5fb467d26aa0e2a66787f1603ec7 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Thu, 11 Jun 2020 20:44:50 -0700 Subject: [PATCH] docs: Add stub documents for all links to point somewhere --- docs/lint.md | 2 ++ docs/performance.md | 2 ++ docs/sandbox.md | 2 ++ docs/typecheck.md | 4 ++++ 4 files changed, 10 insertions(+) create mode 100644 docs/lint.md create mode 100644 docs/performance.md create mode 100644 docs/sandbox.md create mode 100644 docs/typecheck.md diff --git a/docs/lint.md b/docs/lint.md new file mode 100644 index 0000000..e58a660 --- /dev/null +++ b/docs/lint.md @@ -0,0 +1,2 @@ +Linting +======= diff --git a/docs/performance.md b/docs/performance.md new file mode 100644 index 0000000..a084746 --- /dev/null +++ b/docs/performance.md @@ -0,0 +1,2 @@ +Performance +=========== diff --git a/docs/sandbox.md b/docs/sandbox.md new file mode 100644 index 0000000..050b70f --- /dev/null +++ b/docs/sandbox.md @@ -0,0 +1,2 @@ +Sandboxing +========== diff --git a/docs/typecheck.md b/docs/typecheck.md new file mode 100644 index 0000000..48c52fe --- /dev/null +++ b/docs/typecheck.md @@ -0,0 +1,4 @@ +Type checking +============= + +Luau supports a gradual type system through the use of type annotations and type inference. One someone gets around to writing this, this will have documentation on the details of the type system and examples of common problems/how to deal with them.