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
extends Button | |
export var value: int = 0 | |
export var step: int = 1 | |
export var min_value: int = 0 | |
export var max_value: int = 999 | |
export var prefix: String | |
export var suffix: String | |
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
# -*- coding: utf-8 -*- | |
import gringo | |
UNSAFE_PROGRAM = {'name': 'base_unsafe', | |
'rule': 'p(X).'} | |
SAFE_PROGRAM = {'name': 'base_safe', | |
'rule': 'p(x).'} |