Search results

  1. fukurou

    varargs

    fun sum1(vararg values: Int): Int { var total = 0 for (i in values.indices) { total += values[i] } return total } println(sum1(1,2,4))
  2. fukurou

    🎮gaming cyberpunk 2077 patch 1.6

  3. fukurou

    🎮gaming kill la kill how to play

  4. fukurou

    [MEDIA]

  5. fukurou

    [MEDIA]

  6. fukurou

    💰moneymaxing fighting skills

  7. fukurou

    test

    YOKOSOU
  8. fukurou

    test

    LivinGrimoire
  9. fukurou

    test

    LivinGrimoire
  10. fukurou

    test

    CYBERPUNK
  11. fukurou

    test

    test
  12. fukurou

    test

    test
  13. fukurou

    test

    oh yeah get schwifty in here
  14. fukurou

    [MEDIA]

  15. fukurou

    keynote codes

    1 objects spread elements evenly: arrange->distribute objects group elements : select elements->arrange->group 2 layers set object layer level : view->show object list->format->arrange or format->arrange 3 transitions animate->add an effect magic move: duplicate a slide->move object in 2nd...
  16. fukurou

    test

    :s1::s2::s3::s4::666::s5::s6::s7::s8::s9::s10::hkn::s20::s19::s18::s17::s16::s15::s14::s13::s12::s11::s21::s22::s23::s24::s25::s26::s27::s28::s29::s30::s41::s40::s39::s38::s37::s36::s35::s34::s33::s32::s31::s42::s43::s44::s45::s46::s47::s48::s49::s50::s51::s52::s53:
  17. fukurou

    [MEDIA]

  18. fukurou

    🍵 kotlin kotlin cheat sheet

    *variables* var age = 0 // implicit var declaration var isCompleted = false // explicit var declaration val test = 3; // constant *strings* var s1:String = "hello" val result:String = "hello $name" *classes* class MyClass: Any() { var myProperty = 12 // methodes } val mClass =...
  19. fukurou

    [MEDIA]

  20. fukurou

    🍵 kotlin Error: Could not find or load main class _DefaultPackage

    place the main code inside a kotlin class file, not in a plain kt file class Tester { } fun main(args:Array<String>) { val age = 0 // implicit var declaration val isCompleted = false // explicit var declaration val num = 2 // constant takes less space than var println("test") }
Top