🗃️ Committing everything that changed 🗃️

This commit is contained in:
casjay
2022-10-18 20:01:03 -04:00
parent 0f7c897742
commit 125eb060c2
7 changed files with 870 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
#!/usr/bin/env ruby
# -*- coding: None -*-
require 'cgi' //cgi file to create a simple cgi object.
cgi = CGI.new //instantiating a cgi object.
puts cgi.header //thats telling the server about the type(html).
puts "hello" // thats the output on the browser.