/vqdr/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/vqdr/trunk

« back to all changes in this revision

Viewing changes to src/main.vala

  • Committer: Gustav Hartvigsson
  • Date: 2021-09-16 18:17:41 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20210916181741-9t8ba6lmbxty621o
EOF
Re-Wrote FastNumber

Dealinng with users being able to set their own decmial
part of the number is not viable. So don't let the user
do it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
int main (string[] args) {
5
5
    
6
 
    var f = FastNumber (10, 5);
 
6
    var f = FastNumber (10);
7
7
    
8
8
    return 0;
9
9
}