nac3core: fix len on range with step of different sign #129
|
@ -2,6 +2,10 @@
|
||||||
def output_int(x: int32):
|
def output_int(x: int32):
|
||||||
...
|
...
|
||||||
|
|
||||||
|
@extern
|
||||||
|
def output_long(x: int64):
|
||||||
|
...
|
||||||
|
|
||||||
|
|
||||||
class A:
|
class A:
|
||||||
a: int32
|
a: int32
|
||||||
|
|
|
@ -5,6 +5,10 @@ void output_int(int x) {
|
||||||
printf("%d\n", x);
|
printf("%d\n", x);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void output_long(long x) {
|
||||||
|
printf("%ld\n", x);
|
||||||
|
}
|
||||||
|
|
||||||
void output_asciiart(int x) {
|
void output_asciiart(int x) {
|
||||||
static char chars[] = " .,-:;i+hHM$*#@ ";
|
static char chars[] = " .,-:;i+hHM$*#@ ";
|
||||||
if(x < 0) {
|
if(x < 0) {
|
||||||
|
|
Loading…
Reference in New Issue