Jason Turner

Results 239 issues of Jason Turner

This is the "out of the box" experience. When you open this project in MSVC does it Just Work? related #17

good first issue

The documents should be tested and verified by someone who does not know how to work with this template yet (ie, not @lefticus)

good first issue

I will create one comment per submissions, and we'll use that information to vote on the submissions! Voting Rules: * You can vote for your own game * Higher weight...

As it is, with only `println` and no string facilities, it's not possible to do any piece-wise output. A simple `print` utility would help a lot for at least manually...

I believe you are getting a 4 byte write (default `int`, 32bits on all modern platforms) for each 1 byte `bool` object. Input ``` mut blob = raw[true, false] ```...

``` fun get_val() -> i64 { return 1; } let data = raw[1,2,3] unsafe { // note that a literal here, or an explicitly typed // index do work in...

``` fun get_val() -> i64 { return 1; } // both options get the same error: let val = get_val() // or let val = 42 let data = raw[1,2,3]...

``` val data = raw[1,2,3] data[0 + 1] = 3 ``` ```sh ───┬─ /home/jason/june/examples/june_hello_world/main/main.june:2:8 1 │ val data = raw[1,2,3] 2 │ data[0 + 1] = 3 │ ╍ error:...