Skip to content

Instantly share code, notes, and snippets.

@KIBORG04
Last active January 4, 2023 23:07
Show Gist options
  • Save KIBORG04/d878be4b1f43796fe49dd76d8f6c9e57 to your computer and use it in GitHub Desktop.
Save KIBORG04/d878be4b1f43796fe49dd76d8f6c9e57 to your computer and use it in GitHub Desktop.
Testing istype(A) && A.B, A?.B, A && A.b
@MoMMIv2#3484
```
/proc/main()
set background = 1
var/t1
var/t2
var/const/loops = 200000
var/time1 = world.timeofday
for(var/i in 1 to loops)
// INSERT TEST CODE HERE
t1 = world.timeofday-time1
world.log << "1: [t1]"
var/time2 = world.timeofday
for(var/i in 1 to loops)
// INSERT TEST CODE HERE
t2 = world.timeofday-time2
world.log << "2: [t2]"
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment