commit 4c7f397e96f0f92d8c24e9ac0ce7a73b2f8587b4
Author: spesk1 <spesk@pm.me>
Date: Wed Jul 24 18:27:49 2019 -0400
Initial Commit
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..d06871b
--- /dev/null
+++ b/README.md
@@ -0,0 +1,3 @@
+# pico-8 projects
+
+Fooling around with basics of PICO-8 demos / games.
diff --git a/color_noise.p8 b/color_noise.p8
new file mode 100644
index 0000000..7432955
--- /dev/null
+++ b/color_noise.p8
@@ -0,0 +1,24 @@
+pico-8 cartridge // http://www.pico-8.com
+version 18
+__lua__
+
+cls()
+while 1 do
+for x=0,119 do
+ for y=0,119 do
+ r = rnd(9)
+ if (r > 8) then
+ pset(x,y,1+rnd(9))
+ end
+ end
+end
+flip()
+end
+
+__gfx__
+00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
+00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
+00700700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
+00077000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
+00077000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
+00700700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000