Highlights
- Arctic Code Vault Contributor
Popular repositories
4,306 contributions in the last year
Contribution activity
December 2020
Created 430 commits in 2 repositories
Created a pull request in vlang/v that received 2 comments
all: change the way import symbols work & support consts
import mymodule { Type, constant, function } In this PR import symbols will no longer add alias types and placeholder functions, instead it just ma…
+142
−126
•
2
comments
Opened 3 other pull requests in 1 repository
Created an issue in vlang/v that received 1 comment
error with negative int for optional or block default value when there is more than 1 statement
fn main() { mut x := 1 x = opta() or { println('foo') -1 } } fn opta() ?int { return 1 } What did you do? v issue.v What did you expect to see? suc…
1
comment