v/rand/rand.v

23 lines
418 B
Go
Raw Normal View History

2019-06-23 04:21:30 +02:00
// Copyright (c) 2019 Alexander Medvednikov. All rights reserved.
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
2019-06-22 20:20:28 +02:00
module rand
2019-06-26 13:17:45 +02:00
#include <time.h>
pub fn seed() {
2019-06-22 20:20:28 +02:00
# time_t t;
# srand((unsigned) time(&t));
}
pub fn next(max int) int {
2019-06-23 23:24:00 +02:00
r := 0
# r = rand(); // TODO parser bug `rand` module name conflict
return r % max
2019-06-22 20:20:28 +02:00
}
struct C.time_t{}
fn C.rand() int