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

x64: pass variables to functions

This commit is contained in:
Alexander Medvednikov
2020-06-17 20:18:48 +02:00
parent 9c9f6415da
commit a602673adb
8 changed files with 100 additions and 29 deletions

View File

@ -118,3 +118,7 @@ pub fn (db DB) exec_none(query string) int {
pub fn (db DB) exec_param(query string, param string) []Row {
}
*/
pub fn (db DB) insert<T>(x T) {
}