Skip to content

Commit

Permalink
new file: Lua/BudgetAndBilling.lua
Browse files Browse the repository at this point in the history
	modified:   README.md
  • Loading branch information
Ray nieva authored and Ray nieva committed Jun 25, 2017
1 parent 9a46b80 commit 07c958c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Lua/BudgetAndBilling.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
-- This program is intended to be used to calculate my weekly budget based on income that week and projected expenses that week.
io.write("Calculating Weekly/ Budget", "\n")

-- This is usually weekly (net) income but can be another period like bi-weekly or monthly
io.write("Get Income for week/period", "\n")
local income1

income1 = tonumber(io.read())

-- At this point start inputting billing items. These are essentially billing items for the current week or period.
-- The question is at this point what direction this program will go? Will there be permanently assigned billing items or billing items adhoc defined each week. Can Flowgorithm define a true OO approach?
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,13 @@ EXPERIMENTAL - A study of Code Generation in Visual Programming Languages featur

- [Java](https://github.com/RayNieva/VPLs_and_Flowgorithm_Project/blob/master/Java/BudgetAndBilling.java)


- [VB.NET](https://github.com/RayNieva/VPLs_and_Flowgorithm_Project/blob/master/VB.NET/BudgetAndBilling.vb)

#### Scripting Languages

- Lua

- [Javascript](https://github.com/RayNieva/VPLs_and_Flowgorithm_Project/blob/master/Javascript/BudgetAndBilling.js)

- [Perl](https://github.com/RayNieva/VPLs_and_Flowgorithm_Project/blob/master/Perl/BudgetAndBilling.pl)
Expand Down

0 comments on commit 07c958c

Please sign in to comment.