We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6464c71 commit 849f9d4Copy full SHA for 849f9d4
Fonts/Straight/straight.h
@@ -128,16 +128,20 @@ class Straight : public Fonts
128
}
129
130
131
- /*
+
132
char **K()
133
{
134
char **character = getCharGrid(ROWS,COLS);
135
-
136
- //Enter the character grid in ROWS X COLS
+ character[0][0] = character[1][0] = '|';
137
+ character[0][1] = '_';
138
+ character[0][2] = '/';
139
+ character[1][2] ='\\';
140
+ character[1][1] = ' ';
141
142
return character;
143
- */
144
145
146
char **L()
147
example.cpp
@@ -6,6 +6,6 @@ using namespace ascii;
6
int main()
7
8
Ascii a = Ascii(straight);
9
- a.print("J");
+ a.print("K");
10
return 0;
11
0 commit comments