> Kondisi
Branch atau ranting atau percabangan yaitu cabang source code dalam sebuah repository, misal kita memiliki repository secara default kita memiliki branch bernama __master__.
`git merge` adalah command untuk menggabungkan branch
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
| // don't | |
| class A : B { | |
| val colour | |
| val b | |
| } | |
| // do | |
| // File must be saved as `Apple.kt` | |
| class Apple : Fruit { | |
| val colour |
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
| // don't | |
| val a = "Rendy Ananta" | |
| // do | |
| val name = "Rendy Ananta" |
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
| <?php | |
| defined("BASEPATH") OR exit('No direct script access allowed'); | |
| class Core_Model extends CI_Model | |
| { | |
| /** | |
| * Definisi nama tabel | |
| * | |
| * @var $table | |
| */ |
NewerOlder