From 6e168a091d13b5ebb0beb7bb93c2b8c6f6d92711 Mon Sep 17 00:00:00 2001 From: Cody Date: Mon, 26 Jun 2023 23:54:29 -0500 Subject: Deleted documentation directory --- documentation/tour/variables.sloth | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 documentation/tour/variables.sloth (limited to 'documentation/tour/variables.sloth') diff --git a/documentation/tour/variables.sloth b/documentation/tour/variables.sloth deleted file mode 100644 index c3a9137..0000000 --- a/documentation/tour/variables.sloth +++ /dev/null @@ -1,16 +0,0 @@ -# Variables can be declared using the `var` keyword, however they will be mutable. -# If you would like to make the variable immutable you can use `val` -# -# Variables can not be exported and can not be referrenced accross modules. -var x = 0; -val y = 0; - -x = 5; # Valid -y = 5; # Invalid - -# Constants can be declared using the `const` keyword, unlike variables they can -# be exported and accessed across modules. -const FPS = 60; - -pub const WIDTH = 5; -pub const HEIGHT = 17; -- cgit v1.2.3