Skip to content

Commit

Permalink
Starting to write the class
Browse files Browse the repository at this point in the history
  • Loading branch information
R0mb0 committed Nov 19, 2024
1 parent a924409 commit 7d87f4f
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 0 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
27 changes: 27 additions & 0 deletions Dictionary_class/dictionary.class.asp
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<%
Class dictionary
Dim fixed_array()
Dim last_index_searched
Dim my_dictionary
' Initialization and destruction'
sub class_initialize()
Redim fixed_array(1)
fixed_array(0) = Null
fixed_array(1) = Null
Dim temp_array(0)
temp_array(0) = fixed_array
my_dictionary = temp_array
end sub
sub class_terminate()
' Destroy all elements of the arrays'
redim lines(-1)
redim headers(-1)
end sub
end Class
%>

0 comments on commit 7d87f4f

Please sign in to comment.