-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
590c0b6
commit 22e11b9
Showing
6 changed files
with
56 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
## 1.0.2 | ||
|
||
- Added `[INPUT]` function. | ||
|
||
## 1.0.1 | ||
|
||
- Added `[PRIME:x]` function. | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
@echo off | ||
|
||
if exist main.dart.snapshot ( | ||
echo Deleting main.dart.snapshot | ||
del main.dart.snapshot | ||
) | ||
|
||
echo Creating snapshot... | ||
dart --snapshot=main.dart.snapshot bin/main.dart | ||
|
||
if exist ..\dartbin-master\main.dart.snapshot ( | ||
echo Deleting snapshot from dartbin... | ||
del ..\dartbin-master\main.dart.snapshot | ||
) | ||
|
||
echo Moving shapshot file... | ||
move main.dart.snapshot ..\dartbin-master | ||
|
||
cd ..\dartbin-master | ||
|
||
echo Generating Go files... | ||
dart bin/main.dart main.dart.snapshot | ||
|
||
cd go_src | ||
|
||
if exist go_src.exe ( | ||
echo Deleting go_src.exe ... | ||
del go_src.exe | ||
) | ||
|
||
if exist pfl.exe ( | ||
echo Deleting pfl.exe ... | ||
del pfl.exe | ||
) | ||
|
||
echo Running Go build... | ||
env GOPATH=C:\Users\vasil\Desktop\Programming\Dart\dartbin-master\go_src go build -v | ||
echo Go build finished. | ||
|
||
echo Renaming file... | ||
rename go_src.exe pfl.exe | ||
|
||
echo Done. | ||
cd ..\..\pfl |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: pfl | ||
description: An interpreter for Procedural Footnote Language | ||
version: 1.0.1 | ||
version: 1.0.2 | ||
author: Radu Vasilescu <[email protected]> | ||
|
||
environment: | ||
|