Decomissioning macro functions

This commit is contained in:
2020-12-09 13:35:34 -07:00
parent 6c6fcb23f7
commit cd1947a658
4 changed files with 0 additions and 50 deletions

View File

@@ -92,18 +92,6 @@
(defvar :Int myInt 8)
(defmacrofun doTwiceInt [intOp]
,intOp
,intOp)
// I think this causes doTwiceInt's runtime function to be typed as requiring Quote<Int> and returning Int
(defun :Int incrementTwice [:Int val]
(doTwiceInt ++val))
(defmacrofun doTwiceString [stringOp]
,stringOp
,stringOp)
(defun myTryCatch [:Any e]
(try
(throw e)