Skip to content

Commit

Permalink
📝 update test/ascii-art.nas
Browse files Browse the repository at this point in the history
  • Loading branch information
ValKmjolnir committed Aug 16, 2022
1 parent 732a00a commit 73278ea
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion test/ascii-art.nas
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,16 @@ var curve6=func(){
print('\n');
}
}
var curve7=func(){
var vec=["▀▄─","▄▀─","▀─▄","▄─▀"];
for(var (y,p)=(0,0);y!=6;y+=1){
for(var x=0;x!=16;x+=1)
print(vec[p]);
print("\n");
p+=1;
p=p>=4?0:p;
}
}
if(os.platform()=="windows")
system("chcp 65001");
trans_ttf("just for test");
Expand All @@ -139,4 +149,5 @@ curve2();
curve3();
curve4();
curve5();
curve6();
curve6();
curve7();

0 comments on commit 73278ea

Please sign in to comment.