This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# weechat.conf -- weechat v0.4.3 | |
# | |
[debug] | |
[startup] | |
command_after_plugins = "" | |
command_before_plugins = "" | |
display_logo = on |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package; | |
class RandomUnique | |
{ | |
public static function between(startNumber : Int = 0, endNumber : Int = 9) : Array<Int> | |
{ | |
var baseNumber : Array<Int> = new Array(); | |
var randNumber : Array<Int> = new Array(); | |
for(i in startNumber...endNumber){ |
NewerOlder