From 62fdc03327ddaa2c2324ab3217b6d03f62bae1e9 Mon Sep 17 00:00:00 2001 From: Chawye Hsu Date: Mon, 6 Jan 2025 11:02:41 +0800 Subject: [PATCH] initial gh-pages Signed-off-by: Chawye Hsu --- index.html | 111 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..3d53b80 --- /dev/null +++ b/index.html @@ -0,0 +1,111 @@ + + + + + + Base16 Snazzy + + + + +

Base16 Snazzy

+

Scheme author: Chawye Hsu (https://github.com/h404bi) based on Hyper Snazzy Theme (https://github.com/sindresorhus/hyper-snazzy)

+ +
+
00
+
01
+
02
+
03
+
04
+
05
+
06
+
07
+
+
08
+
09
+
0A
+
0B
+
0C
+
0D
+
0E
+
0F
+
+ +
+ +
+require "gem"
+
+string = "base16"
+symbol = :base16
+fixnum = 0
+float  = 0.00
+array  = Array.new
+array  = ['chris', 85]
+hash   = {"test" => "test"}
+regexp = /[abc]/
+
+# This is a comment
+class Person
+  
+  attr_accessor :name
+  
+  def initialize(attributes = {})
+    @name = attributes[:name]
+  end
+  
+  def self.greet
+    "hello"
+  end
+end
+
+person1 = Person.new(:name => "Chris")
+print Person::greet, " ", person1.name, "\n"
+puts "another #{Person::greet} #{person1.name}"
+      
+ +
+ + \ No newline at end of file