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
| def spam(): | |
| global eggs | |
| eggs = 'spam' | |
| eggs = 'global' | |
| spam() | |
| print(eggs) |
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
| def spam(): | |
| eggs = 'spam local' | |
| print(eggs) # prints 'spam local' | |
| def bacon(): | |
| eggs = 'bacon local' | |
| print(eggs) # prints 'bacon local' | |
| spam() | |
| print(eggs) # prints 'bacon local' | |
| eggs = 'global' |
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
| [Bootstrap] | |
| HideEula=1 | |
| Logo=1 | |
| NativeProgress=true | |
| ProgressBarColor=221,72,20 | |
| ProgressFrameColor=207,208,211 | |
| ProgressPosition=60,260 | |
| ProgressSize=319,10 |
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
| import javax.swing.table.DefaultTableModel; | |
| import java.sql.*; | |
| /** | |
| * | |
| * @author zikri | |
| */ | |
| public class DataMhs extends javax.swing.JFrame { | |
| private DefaultTableModel model; | |
NewerOlder