Add a basic Core.Print function for ints. (#4078)

We'd been discussing that explorer remains necessary for print, and I
was wondering if this kind of approach would be okay (we _probably_ want
this to work, based on #2110, albeit with more overloads -- but I don't
think there's a good way to support overloads at the moment).

```
╚╡../bazel-bin/examples/sieve
2
3
5
7
11
13
17
19
23
29
31
37
41
43
...
```
This commit is contained in:
Jon Ross-Perkins
2024-06-25 21:32:07 +00:00
committed by GitHub
parent 734b54e658
commit 8bb80d8271
9 changed files with 143 additions and 2 deletions
+1
View File
@@ -116,6 +116,7 @@ fn Run() -> i32 {
while (n < 1000) {
if (s.is_prime[n]) {
++number_of_primes;
Core.Print(n);
s.MarkMultiplesNotPrime(n);
}
++n;