Skip to content

Commit 01ac716

Browse files
committed
Add v0.20251130 release binaries
1 parent 248465e commit 01ac716

5 files changed

Lines changed: 11 additions & 5 deletions

File tree

bin/jnc

16.3 KB
Binary file not shown.

documentation/docs/system/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ Clone the repository, then run `make` in the root. That's it. The compiler is at
88
% make
99
... snip ...
1010
% ./jnc/target/bin/jnc --version
11-
jnc 0.20251129
12-
build_time: 2025-11-29T04:52:48+00:00
13-
commit_hash: c5213fa47fff81c9ef0c08fbb64fb8ac80ec621e
11+
jnc 0.20251130
12+
build_time: 2025-11-30T22:16:24+00:00
13+
commit_hash: 248465e52004191384599f237301bf8a0b61aee3
1414
% echo "pub fn main(){}" | ./jnc/target/bin/jnc
15-
; Compiled with jnc 0.20251129-c5213fa
15+
; Compiled with jnc 0.20251130-248465e
1616
.text
1717
.align 3
1818
... snip ...

documentation/docs/versions/index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ A few things remain before 1.0:
1919

2020
## Release History
2121

22-
### Bleeding Edge
22+
[//]: # (### Bleeding Edge)
23+
24+
### `v0.20251130`
2325

2426
Add a `MAX_INTEGER` global, and a `pow` function.
2527

lib/jstdlib.jnh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,13 @@ fn putchar(char);
7373
fn puts(char*);
7474
fn read_line();
7575
#![[jnc_restart_line_count]]
76+
int MAX_INTEGER;
7677
fn abs(int);
78+
fn max(int,int);
7779
fn imax(int,int);
80+
fn min(int,int);
7881
fn imin(int,int);
82+
fn pow(int,int);
7983
#![[jnc_restart_line_count]]
8084
struct ArrayList;
8185
fn atoi(char*);

lib/jstdlib.o

4.86 KB
Binary file not shown.

0 commit comments

Comments
 (0)