-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improvements to console, multiline, bug fixes around dialects, os / p…
…ipes contexts
- Loading branch information
Showing
8 changed files
with
72 additions
and
19 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
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,10 +1,10 @@ | ||
//go:build no_devops | ||
// +build no_devops | ||
//go:build no_os | ||
// +build no_os | ||
|
||
package evaldo | ||
|
||
import ( | ||
"github.com/refaktor/rye/env" | ||
) | ||
|
||
var Builtins_devops = map[string]*env.Builtin{} | ||
var Builtins_os = map[string]*env.Builtin{} |
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,10 +1,10 @@ | ||
//go:build no_devops | ||
// +build no_devops | ||
//go:build no_pipes | ||
// +build no_pipes | ||
|
||
package evaldo | ||
|
||
import ( | ||
"github.com/refaktor/rye/env" | ||
) | ||
|
||
var Builtins_devops = map[string]*env.Builtin{} | ||
var Builtins_os = map[string]*env.Builtin{} |
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
Binary file not shown.
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,13 @@ | ||
; | ||
; | ||
; | ||
|
||
|
||
cc os cc pipes ; temporary ... make a command to combine contexts and do code in that | ||
|
||
; GOAL: | ||
; create folders with numbers 1 to 20 | ||
; in odd numbered folders create files odd | ||
; in even numbered folders create sqlite databases with one table | ||
|
||
|
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