File tree Expand file tree Collapse file tree 4 files changed +326
-43
lines changed Expand file tree Collapse file tree 4 files changed +326
-43
lines changed Original file line number Diff line number Diff line change 3
3
branches :
4
4
- main
5
5
6
- env :
7
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
8
-
9
6
jobs :
10
7
contrib-readme-job :
11
8
runs-on : ubuntu-latest
12
9
name : A job to automate contrib in readme
13
10
steps :
14
11
- name : Contribute List
15
12
13
+ env :
14
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
15
+ with :
16
+ readme_path : readme.md
17
+ image_size : 70
Original file line number Diff line number Diff line change @@ -94,16 +94,19 @@ class Straight : public Fonts
94
94
}
95
95
*/
96
96
97
- /*
97
+
98
98
char **H ()
99
99
{
100
100
char **character = getCharGrid ();
101
101
102
102
// Enter the character grid in ROWS X COLS
103
+ character[1 ][0 ]=character[1 ][3 ]=' |' ;
104
+ character[2 ][0 ]=character[2 ][3 ]=' |' ;
105
+ character[1 ][1 ]=character[1 ][2 ]=' _' ;
103
106
104
107
return character;
105
108
}
106
- */
109
+
107
110
108
111
char **I ()
109
112
{
Original file line number Diff line number Diff line change @@ -121,16 +121,23 @@ class Starwar : public Fonts
121
121
return character;
122
122
}
123
123
124
- /*
124
+
125
125
char **J ()
126
126
{
127
127
char **character = getCharGrid ();
128
128
129
129
// Enter the character grid in ROWS X COLS
130
-
130
+ character[4 ][0 ] = character[3 ][6 ] = character[2 ][6 ] = character[1 ][6 ] = character[1 ][9 ] = character[2 ][9 ] = character[3 ][9 ] = character[4 ][9 ] = ' |' ;
131
+ character[0 ][7 ] = character[0 ][8 ] = character[5 ][2 ] = character[5 ][3 ] = character[5 ][4 ] = character[5 ][5 ] = character[5 ][6 ] = character[5 ][7 ] = ' _' ;
132
+ character[3 ][1 ] = character[3 ][2 ] = character[4 ][4 ] = character[4 ][5 ] = ' -' ;
133
+ character[3 ][0 ] = character[3 ][3 ] = ' .' ;
134
+ character[5 ][1 ] = ' \\ ' ;
135
+ character[5 ][8 ] = ' /' ;
136
+ character[4 ][3 ] = ' `' ;
137
+ character[4 ][6 ] = ' \' ' ;
131
138
return character;
132
139
}
133
- */
140
+
134
141
135
142
/*
136
143
char **K()
@@ -258,8 +265,6 @@ class Starwar : public Fonts
258
265
char **character = getCharGrid();
259
266
260
267
//Enter the character grid in ROWS X COLS
261
-
262
- return character;
263
268
}
264
269
*/
265
270
You can’t perform that action at this time.
0 commit comments