Swastik Baranwal
Swastik Baranwal
In one of my next PRs, I will be updating the repo structure **again** so that it will look more clean and easy to browse. ``` -- main repo -...
Hi there, I am learning docker and DevOps in general and I find your book to be quite useful and cover topics a lot in depth but I have to...
`[noinit]` is an attribute which doesn't allow public structs to be defined implicitly and struct members have to be initialised. In their own module, they do not have such restrictions...
**What did you do?** I ran `v fmt -w` on this line of code ```v if c.table.final_sym(typ).kind in [.array, .array_fixed, .struct_, .interface_, .none_, .map, .sum_type] && fmt in [`E`, `F`,...
**V version:** Latest commit **OS:** WSL 2 **What did you do?** ```v struct Foo { f int } fn (f &Foo) + (f1 &Foo) &Foo { return &Foo{f:f.f+f1.f} } f...
I am using your library in [`box-cli-maker`](https://github.com/Delta456/box-cli-maker/) and use `color.ClearCode` to clear colors from the string but it doesn't work on Mac OS's `iterm` terminal though works on other OSes...
### Please confirm this pull request meets the following requirements: - [x] I followed the contributing guidelines: . ### Which change are you proposing? - [ ] Adding/updating open source...
### Describe the bug A single const valued const can hold multi-return values ```v fn two() (int, int) { return 2, 3 } const a = two() println(a) ``` ###...