1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

checker: improve checking of a << b, when a and b are numbers (#12589)

This commit is contained in:
Delyan Angelov
2021-11-29 02:48:49 +02:00
committed by GitHub
parent fe37da31a8
commit 6d97b0a407
33 changed files with 436 additions and 148 deletions

View File

@ -99,7 +99,7 @@ But Vwill prevail for sure, V is the way!!
txt1.create_texture()
r := app.mouse_x % 255
g := app.mouse_y % 255
color := u32(r << 24) | u32(g << 16) | 0xFF
color := u32(r) << 24 | u32(g) << 16 | 0xFF
txt1.bmp.color = color
txt1.draw_text_bmp(app.gg, app.mouse_x, app.mouse_y)
}